/* Struktur Kontainer Hubungi Kami */
#contact {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#contact h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #25D366; /* Warna hijau */
    margin: 10px auto 0;
    border-radius: 2px;
}
/* Card untuk Kontak */
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Gaya untuk Informasi Alamat */
.contact-info p {
    font-size: 18px;
    color: #444;
}

address {
    font-style: normal;
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Tombol Hubungi */
.contact-action button {
    background-color: #ff5722;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-action button:hover {
    background-color: #e64a19;
}

/* Responsif */
@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
        width: 90%;
    }

    .contact-info p {
        font-size: 16px;
    }

    address {
        font-size: 14px;
    }
}
