body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #006400;
    padding: 15px 20px;
    color: white;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px; /* Sesuaikan ukuran logo */
    width: auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.download {
    background-color: #ffffff;
    color: #006400;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.download:hover {
    background-color: #f0f0f0;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .header-left {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .download {
        margin-top: 10px;
    }
}


.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.download {
    background-color: #ffffff;
    color: #006400;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.content {
    padding: 50px;
    background-color: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.images img {
    width: 100%;
    border-radius: 10px;
}

.images img:nth-child(n+10) {
    width: 70%;
}

.video-container {
    display: flex;
    justify-content: center; /* Tengahkan video */
    align-items: center;
    width: 100%; 
    margin-top: 20px;
}

.video-container iframe {
    width: 80%; /* Ukuran default untuk layar besar */
    max-width: 800px; /* Maksimal lebar video */
    aspect-ratio: 16/9; /* Menjaga proporsi video */
    border-radius: 10px; /* Opsional: untuk sudut membulat */
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .video-container iframe {
        width: 90%; /* Lebih kecil untuk layar tablet */
    }
}

@media (max-width: 480px) {
    .video-container iframe {
        width: 100%; /* Full width untuk layar HP */
    }
}


footer {
    font-family: Arial, sans-serif;
}

.footer-top {
    background-color: #05652c;
    padding: 20px;
    text-align: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-width: 30%;  /* Batasi lebar maksimal */
    max-height: 30%;
    margin: 0 auto;  /* Agar tetap di tengah */
}

.footer-top p {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-logos img {
    height: 50px;
}

.footer-bottom {
    background-color: #0b983c;
    text-align: center;
    padding: 15px;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .images {
        grid-template-columns: repeat(1, 1fr);
    }
}