.about-container {
    font-family: 'Inter', sans-serif;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Menjaga gambar agar selalu menutupi seluruh layar */
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 48, 28, 0.411);
    z-index: 1;
}

.about-content {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 50%;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

.about-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-background{
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

/* Responsivitas: Menyesuaikan teks pada layar kecil */
@media screen and (max-width: 768px) {
    .about-content {
        /* Lebar konten lebih kecil di perangkat kecil */
        top: 10%;
        left: 5%;
        width: 90%;
        text-align: center;
    }

    .about-content h1 {
        font-size: 1.5rem;
        /* Mengurangi ukuran font pada layar kecil */
    }

    .about-content p {
        font-size: 0.9rem;
        /* Menyesuaikan ukuran teks */
    }
}

@media screen and (max-width: 480px) {
    .about-content h1 {
        font-size: 1.2rem;
        /* Ukuran font lebih kecil untuk perangkat yang lebih kecil */
    }

    .about-content p {
        font-size: 0.8rem;
        /* Mengurangi ukuran teks lebih lanjut */
    }
}
