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

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

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

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

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

.cookie-content {
    background: #8BC34A;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    text-align: center;
    color: white;
}

.cookie-content h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

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

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

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

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

/* Header */
.header {
    background: #000;
    color: white;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8BC34A;
}

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

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background: #8BC34A;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

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

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

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.why-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.why-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

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

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

.services h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: 8px;
    color: white;
}

.service-card.green {
    background: #8BC34A;
}

.service-card.dark-green {
    background: #689F38;
}

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

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

/* Partnership Section */
.partnership {
    padding: 100px 0;
    background: #8BC34A;
    color: white;
}

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

.partnership-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.partnership-text > p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 500;
}

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

/* Coaching Sessions Section */
.coaching-sessions {
    padding: 100px 0;
    background: white;
}

.coaching-sessions h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.sessions-description {
    text-align: center;
    font-size: 16px;
    margin-bottom: 60px;
    color: #333;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.session-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.session-item.reverse {
    grid-template-columns: 2fr 1fr;
}

.session-item.reverse .session-image {
    order: 2;
}

.session-item.reverse .session-content {
    order: 1;
}

.session-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.session-tag {
    background: #8BC34A;
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.session-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.session-details {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

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

.contact h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.contact-form input {
    padding: 20px;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: white;
    color: #333;
}

.contact-form input::placeholder {
    color: #999;
    font-size: 16px;
}

.submit-btn {
    background: white;
    color: #333;
    padding: 20px 30px;
    border: none;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

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

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-left {
    font-size: 12px;
    color: #999;
}

.footer-center .footer-brand {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
}

.footer-right {
    text-align: right;
}

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

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

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero {
        padding: 160px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services h2,
    .partnership-text h2,
    .coaching-sessions h2 {
        font-size: 28px;
    }
    
    .contact h2 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .session-item,
    .session-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .session-item.reverse .session-image,
    .session-item.reverse .session-content {
        order: unset;
    }
    
    .session-image img {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 36px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .services h2,
    .partnership-text h2,
    .coaching-sessions h2 {
        font-size: 24px;
    }
    
    .contact h2 {
        font-size: 28px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
    
    .session-tag {
        font-size: 12px;
        padding: 12px 16px;
    }
    
    .cookie-content h3 {
        font-size: 28px;
    }
    
    .cookie-content p {
        font-size: 14px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-center .footer-brand {
        font-size: 24px;
    }
}