/* ==============================
   Profil Halaman
============================== */
.profil {
    padding: 40px 0;
    background: #f4f4f4;
}

.profil h2 {
    font-size: 32px;
    color: #2c7a4b;
    margin-bottom: 20px;
    text-align: center;
}

.profil h3 {
    font-size: 24px;
    color: #2c7a4b;
    margin-top: 25px;
    margin-bottom: 10px;
}

.profil p, .profil ul {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.profil ul {
    list-style: disc;
    margin-left: 20px;
}

.profil iframe {
    border-radius: 8px;
    margin-top: 15px;
}

/* Animasi Fade-in */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.map-responsive {
    overflow: hidden;
    /* Maintain a 4:3 aspect ratio */
    padding-bottom: 75%; 
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}