body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
}
.contact-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
}
.whatsapp-link img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}
iframe {
    width: 100%;
    height: 300px;
    border: none;
    margin-top: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Bebas Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Hero section */
.hero {
    background-image: url('../img/bck gas.jpg'); /* Ganti dengan path gambar Anda */
    background-size: cover; /* Agar gambar menutupi seluruh area header */
    background-position: center; /* Agar gambar terpusat */
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Image gallery */
.gallery {
    padding: 2rem 0;
    overflow-x: auto;
    white-space: nowrap;
    background: white;
}

.gallery-container {
    display: inline-flex;
    gap: 1rem;
    padding: 0 2rem;
}

.gallery-item {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}