body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0056b3;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00b0ff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero, .thank-you {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero-content, .thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1, .thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p, .thank-you p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn, .thank-you .btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.hero .btn:hover, .thank-you .btn:hover {
    background: #e68a00;
}

/* Master Classes Section */
#master-classes {
    text-align: center;
    padding: 50px 20px;
    background: white;
}

#master-classes h2 {
    margin-bottom: 30px;
    color: #0056b3;
    font-size: 3rem;
    text-align: center;
}

.growth-category {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 90%;
}

.seo-plan, .freelancing-plan {
    background: #f9f9f9;
}

.digital-marketing-plan, .wordpress-plan {
    background: #d3d3d3;
}

.growth-category h3 {
    color: #0056b3;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.growth-plan-box table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

.growth-plan-box th, .growth-plan-box td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.growth-plan-box td {
    text-align: left;
}

.growth-plan-box th {
    background: #0056b3;
    color: white;
}

.growth-plan-box .btn.plan-button {
    background: #ff9800;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: inline-block;
    width: auto;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.growth-plan-box .btn.plan-button:hover {
    background: #e68a00;
}

.description-window {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

/* FAQ Section */
#faq {
    padding: 50px 20px;
    text-align: center;
    background: #f0f0f0;
}

#faq h2 {
    color: #0056b3;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin: 15px auto;
    max-width: 90%;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f8f8;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-question h3 {
    margin: 0;
    color: #333;
}

.faq-icon {
    font-size: 2rem;
    color: #0056b3;
    transition: color 0.3s ease;
}

.faq-icon:hover {
    color: #00428a;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer, .course-description.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
    background-color: #e0e0e0;
}

.faq-item.active .faq-icon, .course-description.active .faq-icon {
    transform: rotate(45deg);
    color: #00428a;
}

.course-points {
    list-style-type: none;
    padding-left: 0;
    max-height: 200px; /* Set a max height */
    overflow-y: auto; /* Enable vertical scroll */
}

.course-points li {
    text-align: left;
    margin-bottom: 5px;
}

/* Footer Styles */
footer {
    background: #0056b3;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 20px;
}

footer h2 {
    margin-bottom: 15px;
}

footer p {
    margin: 5px 0;
}

.copyright-bar {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ccc;
    text-align: center;
    background-color: #002863;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 65px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-float img {
    width: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

/* Go Top Button */
.go-top {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: none;
    z-index: 1000;
}

.go-top i {
    font-size: 1.5em;
}

/* Announcement Bar Styles */
.announcement-bar {
    background-color: #0056b3;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #0056b3;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1, .thank-you h1 {
        font-size: 2.5rem;
    }

    .growth-plan-box .btn.plan-button {
        padding: 8px 12px;
        font-size: 0.9em;
    }

    .whatsapp-float {
        bottom: 55px;
        right: 10px;
    }

    .whatsapp-float img {
        width: 50px;
    }

    .go-top {
        bottom: 10px;
        right: 60px;
        padding: 8px 12px;
    }

    /* Simplified Table Structure for Mobile */
    .growth-plan-box table {
        display: block;
    }

    .growth-plan-box thead {
        display: none;
    }

    .growth-plan-box tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        padding: 15px;
    }

    .growth-plan-box td {
        display: block;
        text-align: left;
        padding: 10px 0;
    }

    .growth-plan-box td:before {
        content: attr(data-label) ": ";
        font-weight: bold;
    }

    /* Correct Expanded Content Display */
    .course-description .description-window {
        display: block;
        max-height: none;
        overflow: visible;
    }

    .course-points {
        padding-left: 20px;
        max-height: 200px; /* Set a max height */
        overflow-y: auto; /* Enable vertical scroll */
    }

    .course-points li {
        margin-bottom: 5px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet specific styles */
    .logo img {
        width: 130px;
    }

    nav ul li {
        margin-left: 15px;
    }

    .hero h1, .thank-you h1 {
        font-size: 2.8rem;
    }

    .growth-plan-box .btn.plan-button {
        padding: 10px 15px;
    }

    .whatsapp-float {
        bottom: 60px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 55px;
    }

    .go-top {
        bottom: 15px;
        right: 70px;
        padding: 9px 13px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

.highlighted-course {
    color: #ff9800;
    font-weight: bold;
}

.seo-plan-bg, .digital-marketing-plan-bg, .wordpress-plan-bg {
    background: #d3d3d3;
}