body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    min-height: 100vh;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card {
    text-align: center;
}
.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid #016b38;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}
.contact-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #013220;
}
.contact-title {
    font-size: 1rem;
    color: #016b38;
    margin: 0 0 20px 0;
    font-weight: 400;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #013220;
}
.contact-item:hover {
    background: #f8f9fa;
    color: #016b38;
}
.contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.address-card {
    text-align: center;
}
.address-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #013220;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.address-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
.map-section {
    position: sticky;
    top: 40px;
}
.map-container {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.map-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #013220;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.map-frame {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}
.map-frame:hover {
    filter: grayscale(0%);
}
.fade-in {
    animation: fadeIn 0.8s ease-out;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .map-section {
        order: -1;
        position: static;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .container {
        padding: 30px 15px;
    }
    .card {
        padding: 25px;
    }
    .map-frame {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    .page-subtitle {
        font-size: 1rem;
    }
    .contact-cards {
        gap: 20px;
    }
    .card {
        padding: 20px;
    }
    .contact-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .contact-name {
        font-size: 1.3rem;
    }
    .map-frame {
        height: 250px;
    }
}