* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}



.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7c4dff;
}

.cta-button {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #333;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/hero-bg.jpg') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-image {
    margin-top: 60px;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-icon {
    width: 80px;
    height: 80px;
   
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 40px;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.service-card:nth-child(1)::before {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.service-card:nth-child(2)::before {
    background: linear-gradient(45deg, #f093fb, #f5576c);
}

.service-card:nth-child(3)::before {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
}

.service-card:nth-child(4)::before {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
}

.service-card:nth-child(5)::before {
    background: linear-gradient(45deg, #fa709a, #fee140);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    background: rgba(102, 126, 234, 0.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.features h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.feature-item {
    text-align: center;
}

.feature-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 30px;
    color: #f1c40f;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #f39c12;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.contact h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.contact .subtitle {
    font-size: 20px;
    text-align: center;
    color: #f1c40f;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 30px;
}

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

.contact-item::before {
    content: '📧';
    margin-right: 15px;
    font-size: 20px;
}

.contact-item:nth-child(2)::before {
    content: '📍';
}

.contact-item:nth-child(3)::before {
    content: '📞';
}

.contact-form h3 {
    font-size: 24px;
    color: #f1c40f;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #34495e;
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bdc3c7;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #7c4dff;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #7c4dff;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-copyright {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.footer-copyright p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 20px;
    right: 20px;
    background: #2c3e50;
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: bottom 0.3s;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-popup p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept {
    background: #f1c40f;
    color: #333;
}

.cookie-decline {
    background: #7f8c8d;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav{
        display: flex;
        flex-direction: column;
    }
    .nav-links {
        display: flex;
    }
    .nav-links a{
        font-size: 12px;
    }
    .nav-links .cta-button {
        display: none;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .about h2,
    .services h2,
    .features h2,
    .faq h2,
    .contact h2 {
        font-size: 32px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .about h2,
    .services h2,
    .features h2,
    .faq h2,
    .contact h2 {
        font-size: 28px;
    }
}

.btn__wrapper{
    display: flex;
    justify-content: center;
}

.learning-programs {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.learning-programs h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #f1c40f;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.program-card-bottom {
    grid-column: span 1;
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.program-duration {
    font-size: 16px;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 15px;
}

.program-content p:last-child {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Special layout for bottom row */
.programs-grid .program-card:nth-child(4) {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
}

.programs-grid .program-card:nth-child(4) .program-image {
    height: auto;
    min-height: 200px;
}

.programs-grid .program-card:nth-child(5) {
    grid-column: 3 / 4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #333;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .learning-programs h2 {
        font-size: 32px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .programs-grid .program-card:nth-child(4) {
        grid-column: 1;
        display: block;
    }

    .programs-grid .program-card:nth-child(4) .program-image {
        height: 200px;
    }

    .programs-grid .program-card:nth-child(5) {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .program-content {
        padding: 20px;
    }

    .learning-programs h2 {
        font-size: 28px;
    }
}

.expansion {
    padding: 100px 0;
    background: #f8f9fa;
}

.expansion h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
}

.expansion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.expansion-card {
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expansion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.expansion-card-purple {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    color: #333;
}

.expansion-card-pink {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #333;
}

.expansion-card-green {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #333;
}

.expansion-card-yellow {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    color: #333;
}

.expansion-card-light-pink {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #333;
}

.expansion-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.expansion-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.expansion-stat {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Special layout for bottom row */
.expansion-grid .expansion-card:nth-child(4) {
    grid-column: 1 / 3;
}

.expansion-grid .expansion-card:nth-child(5) {
    grid-column: 3 / 4;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.partners h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #333;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.partner-card-yellow {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
}

.partner-image {
    height: 250px;
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.partner-card:hover .partner-image img {
    transform: scale(1.05);
}

.partner-info {
    padding: 30px;
}

.partner-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.partner-role {
    font-size: 16px;
    font-weight: 600;
    color: #f39c12;
    margin-bottom: 20px;
}

.partner-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.partner-details p:last-child {
    margin-bottom: 0;
}

/* Common styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
    color: #333;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .expansion h2,
    .partners h2 {
        font-size: 32px;
    }

    .expansion-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .expansion-grid .expansion-card:nth-child(4),
    .expansion-grid .expansion-card:nth-child(5) {
        grid-column: 1;
    }

    .expansion-card,
    .partner-info {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .expansion h2,
    .partners h2 {
        font-size: 28px;
    }

    .expansion-card,
    .partner-info {
        padding: 25px 20px;
    }

    .partner-image {
        height: 200px;
    }
}
