       body {
            font-family: 'Arial', sans-serif;
            background-color: #f9f9f9;
            margin: 0;
            padding: 0;
        }
        .container {
            text-align: center;
            padding: 50px;
            margin: 0 auto;
            max-width: 800px;
        }
        h1 {
            font-size: 36px;
            color: #333;
        }
        p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }
        .signup-btn {
            display: inline-block;
            padding: 15px 30px;
            margin-top: 30px;
            font-size: 18px;
            color: white;
            background-color: #4CAF50;
            border: none;
            border-radius: 5px;
            text-decoration: none;
        }
        .signup-btn:hover {
            background-color: #45a049;
        }
        .footer {
            margin-top: 50px;
            font-size: 14px;
            color: #999;
        }
        img {
            max-width: 100%;
            height: auto;
            margin-bottom: 30px;
            border-radius: 10px;
        }
        .highlight {
            background-color: #f0f0f0;
            padding: 20px;
            margin-top: 20px;
            border-left: 5px solid #4CAF50;
            text-align: left;
        }
        blockquote {
            font-size: 16px;
            color: #666;
            margin-left: 20px;
            border-left: 4px solid #4CAF50;
            padding-left: 15px;
            font-style: italic;
        }
.reviews {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.review {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.review-content {
    flex-grow: 1;
}

.review p {
    margin: 5px 0;
}

.review-author {
    font-weight: bold;
    color: #555;
}

        .course-info {
            #background-color: #e7f0f7;
            padding: 30px;
            margin-top: 30px;
            border-radius: 10px;
            text-align: left;
        }
        .image-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
            justify-content: center;
        }
        .image-item {
            flex: 1;
            max-width: 300px;
            text-align: center;
        }
        .image-item img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            margin: 0 auto;
        }
        .caption {
            font-size: 14px;
            color: #666;
            margin-top: 10px;
            line-height: 1.4; /* Adjust line height if needed */
        }
        .large-image-gallery {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px; /* Adjust spacing between images */
        }
        .large-image-item {
            text-align: center;
        }
        
        .large-image-item img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .caption {
            margin-top: 10px;
            font-size: 18px; /* Adjust caption font size as needed */
            color: #555; /* Adjust caption color as needed */
        }

.free-signup-section {
    background-color: #f0f0f0;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.free-signup-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.free-signup-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.free-signup-section input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
}

.free-signup-section .signup-btn {
    font-size: 18px;
    padding: 12px 30px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    width: 80%;
    max-width: 400px;
}

.free-signup-section .signup-btn:hover {
    background-color: #45a049;
}

