/* Background image for the header */
.header-contactus {
    background-image: url('/img/logo/background.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 200px 0;
}
.contactus-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 539px !important;
    z-index: 1;
}
/* Title style to ensure it appears above the overlay */
.contactus-title {
    position: relative;
    color: white;
    font-size: 3rem; 
    z-index: 2;
    padding-bottom: 5px; 
    border-bottom: 3px solid white; 
    display: inline-block;
}
.contact-info-card {
    border-radius: 10px;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1);
    border: none !important;
}

.card-body-contact {
    padding: 10px;
}

.icon-contact {
    font-size: 24px;
    color: #2c2b5e;
    margin-right: 15px;
}

.info-text h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #2c2b5e;
}

.info-text p {
    font-size: 14px;
    margin: 0;
    color: #333;
}
@media (max-width: 480px) {
    .contactus-overlay {
        height: 510px !important; /* Kurangi tinggi overlay */
        width: 100%; /* Buat lebar lebih kecil dari 100% */
        margin: 0 auto; /* Posisikan di tengah */
    }
}
@media (min-width: 375px) and (max-width: 480px) {
    .info-text h5 {
        font-size: 13px;
    }
    .info-text p {
        font-size: 9px;
    }
}
