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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #c85a5a;
    color: white;
}

.cookie-btn.accept:hover {
    background: #b54848;
}

.cookie-btn.refuse {
    background: #e0e0e0;
    color: #333;
}

.cookie-btn.refuse:hover {
    background: #d0d0d0;
}

/* Header */
.header {
    background: #c85a5a;
    padding: 15px 0;
    position: relative;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.8;
}

.brand {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;

background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url(./assets/bg.png) lightgray 50% / cover no-repeat;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: #c85a5a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* About Section */
.about {
    padding: 80px 20px;
    text-align: center;
    background: white;
}

.about h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
}

/* Learning Tracks */
.learning-tracks {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.learning-tracks h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.track-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.track-icon {
    width: 80px;
    height: 80px;
    background: #e3f2fd;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.track-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.track-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Clarity Section */
.clarity {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.clarity h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2c3e50;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clarity-image {
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.clarity-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.clarity p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 1000px;
    margin: 40px auto 0;
}

/* Trust Section */
.trust {
    padding: 80px 20px;
    background: #f8f9fa;
}

.trust h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust > p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.trust-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-number {
    width: 40px;
    height: 40px;
    background: #c85a5a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Contact Form */
.contact-form {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form > p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form input {
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #c85a5a;
    color: white;
}

.form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form input:focus {
    outline: none;
    border-color: #c85a5a;
    background: #b54848;
}

.submit-btn {
    background: #c85a5a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .brand {
        font-size: 20px;
    }

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

    .hero p {
        font-size: 14px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 12px;
    }

    .about h2,
    .learning-tracks h2,
    .clarity h2,
    .trust h2,
    .contact-form h2 {
        font-size: 24px;
    }

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

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

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

    .trust-point {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .cookie-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

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

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

    .about,
    .learning-tracks,
    .clarity,
    .trust,
    .contact-form {
        padding: 60px 15px;
    }

    .tracks-grid {
        grid-template-columns: 1fr;
    }

    .track-card {
        padding: 25px 15px;
    }

    .form {
        gap: 15px;
    }

    .form input,
    .submit-btn {
        padding: 16px 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}