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

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

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

/* Header */
.header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f4724c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #a8c8ec 0%, #b5d0f0 100%);
    padding: 4rem 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 4rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
}

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

.cta-button {
    background: #f4724c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e05a38;
}

/* Learning Section */
.learning-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.learning-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.learning-text {
    flex: 1;
}

.learning-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.learning-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learning-image {
    flex: 1;
}

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

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: #fff;
}

.stats-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-number.pink {
    color: #ff6b9d;
}

.stat-number.red {
    color: #f4724c;
}

.stat-number.green {
    color: #4caf50;
}

.stat-number.orange {
    color: #ff9800;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
}

.stats-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stats-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Courses Section */
.courses-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #a8c8ec 0%, #b5d0f0 100%);
}

.courses-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: #f4724c;
    border-radius: 50%;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    font-size: 1.3rem;
    color: #f4724c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.course-button {
    background: #f4724c;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.course-button:hover {
    background: #e05a38;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #a8c8ec 0%, #b5d0f0 100%);
    border-radius: 50px 50px 0 0;
}

.contact-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f4724c;
}

.submit-button {
    background: #f4724c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #e05a38;
}

.contact-image {
    flex: 1;
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

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

.cookie-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cookie-popup h3 {
    font-size: 1.5rem;
    color: #f4724c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cookie-popup p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.cookie-accept-all {
    background: #f4724c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept-all:hover {
    background: #e05a38;
}

.cookie-essential {
    background: transparent;
    color: #f4724c;
    border: 2px solid #f4724c;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-essential:hover {
    background: #f4724c;
    color: white;
}

/* Success Page */
.success-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.success-content h2 {
    font-size: 2rem;
    color: #f4724c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-content button {
    background: #f4724c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.success-content button:hover {
    background: #e05a38;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .learning-content,
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cookie-popup {
        padding: 1rem;
    }
    
    .cookie-popup p {
        font-size: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}