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

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

html {
    scroll-behavior: smooth;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff4757;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-primary:hover {
    background: #ff3742;
}

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff4757;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo::before {
    content: "○";
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.brand-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #ff4757;
}

.btn-nav {
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-nav:hover {
    background: #ff3742;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.btn-hero {
    background: #ff4757;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

/* About Section */
.about {
    background: #111;
    color: white;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ccc;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff4757;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Programs Section */
.programs {
    background: #000;
    color: white;
    padding: 5rem 2rem;
}

.programs-header {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 3rem;
}

.programs-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.programs-header p {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
}

.programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.program-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff4757;
    margin-bottom: 1.5rem;
}

.program-card .btn-primary {
    background: #ff4757;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.program-card .btn-primary:hover {
    background: #ff3742;
}

/* Mentor Section */
.mentor {
    background: #111;
    color: white;
    padding: 5rem 2rem;
}

.mentor-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mentor-image img {
    width: 100%;
    border-radius: 8px;
}

.mentor-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mentor-intro {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ccc;
}

.mentor-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff4757;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./assets/bg2.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input {
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

#contact-form input::placeholder {
    color: #888;
}

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

.btn-form {
    background: #ff4757;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-form:hover {
    background: #ff3742;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff4757;
    margin-bottom: 1rem;
}

.footer-logo::before {
    content: "○";
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4757;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff4757;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description,
    .hero-text {
        font-size: 0.9rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .mentor-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .about,
    .programs,
    .mentor,
    .contact-form {
        padding: 3rem 1rem;
    }
    
    .program-card,
    .mentor-features .feature {
        padding: 1.5rem;
    }
}