* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #b8bbbe;
    color: #333;
    scroll-behavior: smooth;
}

.section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #bbbfc1, #c4bebe);
}

.section:nth-child(even) {
    background: linear-gradient(to bottom right,#bbbfc1, #c4bebe);
}

.content-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.content-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    font-size: 30px;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: #0077cc;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.map-container {
    margin-top: 20px;
    border: 2px solid #ccddee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Tombol scroll ke atas */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 999;
    transition: background 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #005fa3;
}

@media (max-width: 600px) {
    h2 {
        font-size: 24px;
    }

    .content-wrapper {
        padding: 25px;
    }

    #scrollTopBtn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}