/* General Styles */
:root {
    --primary-color: #2643F4;
    --text-color: #333;
    --background-color: #ffffff;
    --secondary-background: #f5f5f5;
    --footer-color: #1d1d1d;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

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

section {
    padding: 60px 0;
}

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

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1937D1;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(38, 67, 244, 0.1);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin: 0;
    margin-right: 20px;
    flex: 1;
}

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

.cookie-buttons button {
    margin: 5px;
}

.cookie-buttons .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
}

.logo {
    color: white;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 60px 0;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.about h2 {
    color: white;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Programs Section */
.programs {
    background-color: white;
    padding: 80px 0;
}

.programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.program-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.program-image {
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.program-price {
    margin-top: auto;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

/* Technology Section */
.technology {
    background-color: var(--secondary-background);
    padding: 80px 0;
}

.tech-image {
    margin: 40px 0;
}

/* Contact Section */
.contact {
    background-color: var(--footer-color);
    color: white;
    padding: 80px 0;
}

.contact h2 {
    color: white;
}

.contact-info {
    margin-bottom: 40px;
}

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

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

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #e8e8e8;
    font-family: 'Inter', sans-serif;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

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

.footer-links a:hover {
    opacity: 0.8;
}

.tech-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .hero-container, 
    .about-container {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .programs-container {
        flex-direction: column;
        align-items: center;
    }

    .program-card {
        max-width: 100%;
    }

    .stats {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}