.tentangkami-page {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-section {
    height: 400px;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0,0,0,0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
}

/* About Section */
.about-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
}

.about-logo {
    width: 120px;
    margin-bottom: 1rem;
}

.about-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Visi Misi Section */
.visimisi-section {
    background: #ff8c00;
    color: #fff;
    padding: 3rem 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.visimisi-card {
    background: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-align: center;
}

.visimisi-card h2 {
    color: #ff8c00;
    margin-bottom: 1rem;
}

/* Lokasi Section */
.lokasi-section {
    background: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.lokasi-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #333;
}

.lokasi-section p {
    margin-bottom: 2rem;
    color: #666;
}

.maps-embed {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.btn-maps {
    background-color: #ff8c00;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-maps:hover {
    background-color: #e67600;
}
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        height: 250px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* About Section */
    .about-section {
        padding: 2rem 1rem;
    }

    .about-logo {
        width: 100px;
    }

    .about-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Visi Misi Section */
    .visimisi-section {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .visimisi-card {
        width: 100%;
        max-width: 90%;
        padding: 1.5rem;
    }

    /* Lokasi Section */
    .lokasi-section {
        padding: 2rem 1rem;
    }

    .lokasi-section h2 {
        font-size: 1.5rem;
    }

    .lokasi-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn-maps {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
