/* General Styles */
body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #FDFBF7;
    /* Rich Cream */
    color: #2C3E50;
    /* Dark Charcoal */
}

.intro-image-container {
    text-align: center;
    padding: 20px 20px 10px 20px;
    /* Minimal padding, especially bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FDFBF7;
    /* Rich Cream */
}

.intro-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    /* Reduced logo size */
    height: auto;
    object-fit: cover;
    border: 3px solid #AA771C;
    /* Gold Frame */
    padding: 10px;
    /* Spacing between image and border */
    background-color: white;
    /* Background for the frame */
}

.intro-content {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FDFBF7;
}

.intro-text {
    max-width: 800px;
    font-size: 1.2rem;
    margin: 0 25px;
    line-height: 1.6;
}

.language-section {
    margin-bottom: 8px;
    /* Minimal spacing */
    padding-bottom: 5px;
    /* Minimal spacing */
    border-bottom: 1px solid #D3D3D3;
    color: #4A5568;
}

.language-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.language-section h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #AA771C;
    /* Metallic Gold Dark */
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #D4AF37;
    display: inline-block;
    padding-bottom: 10px;
}

.services {
    background-color: #F5F0E6;
    /* Slightly darker cream for contrast */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.partner {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
}

.partner p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 25px;
    line-height: 1.4;
}

.partner-logo {
    display: block;
    margin: 0 auto;
    max-width: 200px;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid #AA771C;
    padding: 10px;
    background-color: white;
}

.card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 280px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(191, 149, 63, 0.15);
    /* Gold glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #F0E68C;
}

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

.icon-box {
    background-color: #FDFBF7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    /* Increased size */
    height: 100px;
    /* Increased size */
    margin: 0 auto 20px;
    border-radius: 50%;
    /* Circular icon box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}



.card-icon {
    max-width: 70%;
    /* Increased icon size */
    max-height: 70%;
    /* Increased icon size */
    height: auto;
    width: auto;
}

.card h2 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #2C3E50;
    font-weight: 700;
}

.card p {
    margin: 10px 0 0;
    font-size: 1.1rem;
    color: #7F8C8D;
    line-height: 1.5;
}

.map-container {
    position: relative;
    padding-bottom: 40%;
    /* Reduced height for better proportion */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    /* Subtle desaturation for map */
}

.footer {
    background: #FDFBF7;
    /* Match body background */
    text-align: center;
    padding: 60px 20px;
    color: #2C3E50;
    /* Dark Charcoal for contrast */
    text-shadow: none;
    border-top: 1px solid #D3D3D3;
    /* Separator line */
}

.footer-copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-social {
    margin-bottom: 15px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
    color: #2C3E50;
    /* Dark Charcoal */
    gap: 12px;
    transition: opacity 0.3s ease;
    line-height: 1;
    /* Ensure text height doesn't throw off centering */
}

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

.footer-icon {
    width: 28px;
    height: auto;
    display: block;
    /* Remove inline spacing */
    filter: brightness(0);
    /* Force icon to black */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    /* Reduce logo size on mobile */
    .intro-image {
        max-width: 250px;
    }

    /* Reduce spacing and font size for language sections */
    .language-section {
        font-size: 0.9rem;
        margin-bottom: 4px;
        padding-bottom: 2px;
    }

    .map-container {
        padding-bottom: 75%;
        /* Taller map on mobile */
    }
}