body{
    background: linear-gradient(to bottom, #DBE7C9, #fff, #fff );
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}
header {
    width: 100%;
    padding: 20px 0; 
    text-align: center;
}

header img{
    width: 100px;
    height: 100px;
}


.navbar {
    background-color: #789461; 
    padding: 10px 0;
    border-radius: 17px; 
    width: 80%;
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
}

.navbar ul {
    list-style-type: none; 
    margin: 0;
    padding: 0;
    text-align: center; 
}

.navbar ul li {
    display: inline; 
    margin-right: 20px;
}


.navbar ul li a {
    color: #fff; 
    text-decoration: none; 
    font-size: 18px; 
}

.navbar ul li a:hover {
    color: #ffd700; 
}

.konten-slider{
    width: 70%;
}
.konten-slider img{
    width: 100%;
    height: 500px;
}

.content {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    flex-wrap: wrap;
}

.content-1, .content-2, .content-3 {
    width: 300px; 
    margin: 20px; 
    border: 2px solid white;
    background-color: white;
    overflow: hidden;
    padding: 10px;
    transition: transform 0.3s ease;
    text-align: center; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-1:hover, .content-2:hover, .content-3:hover {
    transform: scale(1.05);
}

.image img {
    max-width: 60%; 
    height: auto; 
}

.text p {
    text-align: justify;
}


.clear{
    clear: both;
}
.content-4 {
    width: 90%;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(to bottom, #DBE7C9, #DBE7C9, #fff);
}

.content-4-isi {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.content-4-text {
    flex: 1;
    margin-right: 20px;
    text-align: justify;
}

.content-4-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: 20px;
    left: 90px;
}

.content-4-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

#back-to-top {
    position: fixed; 
    bottom: 20px; 
    right: 30px; 
    z-index: 99; 
    border: none; 
    outline: none; 
    background-color: #789461; 
    color: white; 
    cursor: pointer; 
    padding: 15px; 
    border-radius: 10px; 
    font-size: 18px; 
}

#back-to-top img {
    width: 25px; 
    height: 25px; 
    border-radius: 50%;
}

#back-to-top:hover {
    background-color: #ffd700; 
}



footer{
    text-align: center;
    background-color: black;
    height: 30px;
    color: white;
    width: 90%;
    background-color: #789461; 
    border-radius: 17px;
}

footer p{
    display: inline-block;
    position: relative;
    bottom: 10px;
}


@media (max-width: 768px) {
    .navbar {
        width: 100%;
    }

    .navbar ul li {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 992px) {
    .content-4 {
        flex-direction: column;
    }

    .content-4-text, .content-4-img {
        margin: 0;
        width: 100%;
    }

    .content-4-img {
        justify-content: center;
        top: 0;
        left: 0;
    }

    .content-4-img img {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .content-4 {
        width: 100%;
    }

    .content {
        flex-direction: column;
    }

    .content-1, .content-2, .content-3 {
        width: 90%;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    header img {
        width: 80px;
        height: 80px;
    }
}


@media (max-width: 768px) {
    .konten-slider {
        width: 100%;
    }

    .konten-slider img {
        height: auto;
    }
}

@media (max-width: 768px) {
    footer {
        width: 100%;
    }

    footer p {
        bottom: 0;
    }
}

