:root {
    --primary: #163356;
    --secondary: #1e3a5f;
    --accent: #fdbb30;
    --cream: #fdfbf5;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fdfbf5 0%, #e8f1f7 100%);
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
}

.container {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%231e3a5f' fill-opacity='0.1' d='M0,160L48,138.7C96,117,192,75,288,74.7C384,75,480,117,576,122.7C672,128,768,96,864,96C960,96,1056,128,1152,144C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E");
}

.text {
    flex: 1;
    padding: 30px;
    z-index: 1;
}

.text h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.text p {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 1.5rem;
}

.contact-link {
    display: inline-block;
    background: var(--accent);
    color: var(--secondary);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
}

.image svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.intro {
    display: flex;
    align-items: center;
    background: var(--secondary);
    color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.choose {
    text-align: center;
}
.intro-text h2 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pedagogy {
    max-width: 900px;
    text-align: center;
    padding: 40px 0;
}

.pedagogy h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.pedagogy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.pedagogy-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.pedagogy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pedagogy-item svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .container, .intro {
        flex-direction: column;
        text-align: center;
    }

    .text h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
}
.contact-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px 0;
}

.email-link {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 20px 0;
    font-family: 'Fraunces', serif;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

.reach-out {
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.contact-button svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #833AB4, #E1306C);
    color: white;
}

.telegram {
    background: #0088cc;
    color: white;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
    .email-link {
        font-size: 1.8rem;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}