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

html {
    scroll-behavior: smooth;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4A1B5C;
    color: white;
    padding: 30px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

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

.cookie-buttons .btn-primary {
    background: #7ED957;
    color: white;
    border: none;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Header */
.header {
    background: #4A1B5C;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-text {
    color: white;
    margin-right: 5px;
}

.brand-accent {
    color: #7ED957;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #7ED957;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: #4A1B5C;
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-text {
    margin-bottom: 40px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Buttons */
.btn-primary {
    background: #7ED957;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #6BC544;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: white;
    color: #4A1B5C;
}

/* Journey Section */
.journey {
    padding: 100px 0;
    background: white;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journey-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.journey-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A1B5C;
    margin-bottom: 30px;
    line-height: 1.2;
}

.journey-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

/* Mentorship Section */
.mentorship {
    padding: 100px 0;
    background: #4A1B5C;
    color: white;
}

.mentorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.mentorship-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.mentorship-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mentorship-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Audience Section */
.audience {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A1B5C;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.audience-card {
    background: #4A1B5C;
    color: white;
    padding: 40px;
    border-radius: 15px;
}

.audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.audience-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #4A1B5C;
    color: white;
}

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

.reason-card {
    background: white;
    color: #4A1B5C;
    padding: 30px;
    border-radius: 15px;
}

.reason-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reason-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.program-card {
    background: #4A1B5C;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
}

.program-card.featured {
    transform: scale(1.05);
    border: 3px solid #7ED957;
}

.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.program-card>p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.program-features {
    margin: 25px 0;
}

.program-features p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.program-features strong {
    font-weight: 700;
}

.program-price {
    font-size: 2rem;
    font-weight: 700;
    color: #7ED957;
    text-align: center;
    margin: 30px 0 20px 0;
}

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

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    background: #f8f8f8;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #7ED957;
    background: white;
}

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

.contact-form .btn-primary {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
}

.contact-info {
    padding: 20px 0;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #7ED957;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: white;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #4A1B5C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #7ED957;
}

.footer-copyright p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #4A1B5C;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .mentorship-content {
        grid-template-areas:
            "image"
            "text";
    }

    .mentorship-text {
        grid-area: text;
    }

    .mentorship-image {
        grid-area: image;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .program-card.featured {
        transform: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .cookie-buttons .btn-primary,
    .cookie-buttons .btn-secondary {
        text-align: center;
        padding: 12px 20px;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .audience-card,
    .program-card,
    .reason-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .navbar {
        padding: 15px;
    }

    .brand-text,
    .brand-accent {
        font-size: 1.2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #7ED957;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .hero,
    .mentorship,
    .why-choose,
    .contact {
        background: #000;
        color: #fff;
    }

    .audience,
    .journey,
    .programs {
        background: #fff;
        color: #000;
    }
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 100px 0;
}

.text-section h2 {
    font-family: Lato;
    font-weight: 700;
    font-size: 40px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    vertical-align: middle;

}

.text-section p {
    font-family: Lato;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
}

#contact .section-title {
    color: #FFF;
}