/* CSS untuk layar dengan lebar kurang dari atau sama dengan 768px (ponsel) */
@media screen and (max-width: 768px) {
    .contact-info {
        flex-direction: column;
    }

    .contact-item {
        flex: 1;
        padding: 10px;
        text-align: center;
    }
}

/* Responsive CSS untuk layar kecil */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    textarea {
        width: 100%;
    }
}

/* Gaya untuk responsivitas gambar */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        /* Tampilkan gambar di atas teks */
        text-align: center;
        align-items: center;
    }

    .head1 {
        text-align: justify;
        padding: 0;
    }

    .logo-image {
        margin-top: 20px;
        /* Jarak antara gambar dan teks pada mode responsif */
    }
}

@media screen and (max-width: 768px) {
    .content-berita img {
        width: 100%;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s;
        position: relative;
        perspective: 1000px;
    }

    .news-item p{
        font-size: 10px;
    }

    .news-caption1{
        font-size: 10px;
    }
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
    .content-berita-laporan {
        width: 100%;
        padding: 0 10px;
    }
    h4 {
        text-align: justify;
        font-family: Arial, sans-serif;
        font-weight: normal;
        font-size: 15px;
        color: #646775;
    }
    /* Style for the content section */
    .content-berita-laporan {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px;
    }

    /* Style for the news title */
    .content-berita-laporan h2 {
        font-size: 24px;
        margin: 10px 0;
    }

    /* Style for the news date */
    .content-berita-laporan p {
        font-size: 16px;
        color: #777;
        margin-bottom: 20px;
    }

    /* Style for the news container */
    .news-container-laporan {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Style for the individual news item */
    .news-item-laporan {
        margin: 10px;
    }

    /* Style for the news item image */
    .news-item-laporan img {
        width: 40%;
        margin: 10px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s;
        position: relative;
        perspective: 1000px;
    }

    /* Style for the news item link */
    .news-item-laporan a {
        text-decoration: none;
        color: #333;
    }

    /* Style for the modal */
    .modal {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

    /* Style for the close button */
    .close {
        position: absolute;
        top: 30px;
        right: 300px;
        font-size: 50px;
        font-weight: bold;
        color: white;
        cursor: pointer;
    }

    .image {
        cursor: pointer;
    }
}

/* Media Query untuk tampilan responsif */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .col {
        width: 100%;
        margin: 10px 0;
    }

    /* Adjust menu toggle button position */
    .menu-toggle {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .banner-container {
        width: 100%;
        padding-top: 57px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        max-width: 100px; /* Adjust as needed */
    }
}