/* Base Styles */
:root {
    --primary-color: #e84c3d;
    --secondary-color: #333;
    --text-color: #333;
    --light-color: #fff;
    --gray-color: #f4f4f4;
    --dark-gray: #3a3a3a;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Aleo', serif;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-block;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 2px solid var(--light-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background-color: transparent;
    color: var(--light-color);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.hero .subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.hero .title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.hero .description {
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: left;
}

.hero .btn {
    margin-top: 1rem;
    display: block;
    max-width: 300px;
    text-align: center;
    margin: 2rem auto 0;
}

/* Stats Section */
.stats {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-desc {
    font-size: 0.9rem;
}

/* About Section */
.about {
    background-color: var(--gray-color);
    padding: 3rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

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

.about-text {
    padding: 1rem;
}

.about-text h2 {
    text-align: right;
}

/* Programs Section */
.programs {
    padding: 3rem 0;
    background-color: var(--light-color);
}

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

.program-card {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.program-desc {
    margin-bottom: 1.5rem;
}

.program-features {
    list-style-type: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.program-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.program-features li:first-child {
    font-weight: bold;
    padding-left: 0;
}

.program-features li:not(:first-child)::before {
    content: "•";
    position: absolute;
    left: 0;
}

.program-price {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    margin-top: auto;
}

/* Contact Section */
.contact {
    background-color: var(--dark-gray);
    color: var(--light-color);
    padding: 3rem 0;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background-color: #e9e9e9;
    color: var(--text-color);
    border-radius: 4px;
}

.contact-form .btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
    display: block;
    width: 100%;
    max-width: 200px;
}

.contact-form .btn:hover {
    background-color: transparent;
    color: var(--light-color);
}

/* Footer */
.footer {
    background-color: var(--light-color);
    padding: 1.5rem 0;
}

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

.copyright {
    margin-bottom: 0;
}

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

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-color);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero .title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-image {
        margin-bottom: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-align: center;
}