/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a1f;
    overflow-x: hidden;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    color: #0a0a1f;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 16px;
    text-align: center;
}

.cookie-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0a0a1f;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.5;
}

.accept-cookies,
.configure-cookies {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-cookies {
    background: #c7ff00;
    color: #0a0a1f;
}

.configure-cookies {
    background: transparent;
    color: #0a0a1f;
    border: 2px solid #c7ff00;
}

.accept-cookies:hover {
    background: #b3e600;
}

.configure-cookies:hover {
    background: #c7ff00;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
}

.navbar {
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #c7ff00;
    text-decoration: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #c7ff00;
    margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.hero-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #c7ff00;
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: #c7ff00;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #c7ff00;
    color: #0a0a1f;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 24px;
    transition: all 0.3s ease;
}

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

.hero-image img {
    width: 100%;
    border-radius: 16px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0f0f2a;
}

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

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(199, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #c7ff00;
}

.feature-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #c7ff00;
}

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

/* Programs Section */
.programs {
    padding: 80px 0;
}

.programs-header {
    text-align: center;
    margin-bottom: 60px;
}

.programs-header .dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.programs h2 {
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto;
}

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

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(199, 255, 0, 0.2);
}

.program-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.price {
    color: #c7ff00;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.program-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.program-content li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    opacity: 0.8;
}

.program-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c7ff00;
}

.program-cta {
    display: inline-block;
    background: transparent;
    color: #c7ff00;
    padding: 12px 24px;
    border: 2px solid #c7ff00;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-cta:hover {
    background: #c7ff00;
    color: #0a0a1f;
}

/* Stories Section */
.stories {
    padding: 80px 0;
    background: #0f0f2a;
}

.stories h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(199, 255, 0, 0.2);
}

.story-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.story-avatar {
    font-size: 32px;
    background: rgba(199, 255, 0, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-header h3 {
    font-size: 16px;
    color: #c7ff00;
}

.story-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0.9;
}

.story-card p:last-child {
    color: #c7ff00;
    font-weight: 600;
    margin-bottom: 0;
}

/* News Section */
.news {
    padding: 80px 0;
}

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

.news-text .dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.news h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.news-text p {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.news-image img {
    width: 100%;
    border-radius: 16px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #0f0f2a;
}

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

.contact-text .dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.contact-labels {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-labels span {
    background: rgba(199, 255, 0, 0.2);
    color: #c7ff00;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus {
    outline: none;
    border-color: #c7ff00;
}

.submit-button {
    background: #c7ff00;
    color: #0a0a1f;
    padding: 16px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #c7ff00;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

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

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

.footer-links a:hover {
    color: #c7ff00;
    opacity: 1;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .news-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 31, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .features h2,
    .programs h2,
    .stories h2,
    .news h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .program-content {
        padding: 20px;
    }
    
    .story-card {
        padding: 20px;
    }
    
    .contact-form input {
        padding: 14px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 14px;
        font-size: 14px;
    }
}
