/* Base Styles */
:root {
    --primary-color: #43b883;
    --primary-dark: #389e6f;
    --primary-light: #6bcb9e;
    --dark-color: #1a1a1a;
    --dark-secondary: #222222;
    --gray-color: #333333;
    --light-gray: #f5f5f5;
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --font-primary: 'Arial', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
}

/* Header and Navigation */
header {
    background-color: var(--dark-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background-image: url('./img/1.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--primary-color);
}

/* What to Expect Section */
.what-to-expect {
    background-color: var(--dark-secondary);
    padding: 80px 0;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits {
    background-color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    margin-right: 15px;
    min-width: 30px;
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--text-secondary);
}

/* For Whom Section */
.for-whom {
    background-color: var(--dark-secondary);
}

.audience-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.audience-card {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    text-align: center;
    box-shadow: var(--shadow);
}

.audience-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.audience-card h3 {
    margin-bottom: 15px;
}

.audience-card p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Program Flow Section */
.program-flow {
    background-color: var(--dark-color);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.flow-step.reverse {
    flex-direction: row-reverse;
}

.flow-step-img {
    flex: 1;
    min-width: 300px;
}

.flow-step-content {
    flex: 1;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.flow-step-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.flow-step-content p {
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-secondary);
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--gray-color);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    color: gold;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Contact Section */
.contact {
    background-color: var(--dark-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--gray-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #252525;
    color: var(--text-color);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

.form-consent {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-consent a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--gray-color);
    padding: 60px 0 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: var(--text-secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--gray-color);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

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

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    min-height: 70vh;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 40px;
}

.legal-updated {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.legal-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Thank You Page */
.thank-you {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you h1 {
    margin-bottom: 30px;
}

.thank-you p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.thank-you .btn {
    margin-top: 20px;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: var(--dark-color);
        padding-top: 50px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -5px);
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .flow-step, .flow-step.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .flow-step-img {
        order: -1;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .card, .audience-card, .testimonial-card {
        min-width: 100%;
    }
}