body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    width: 100%;
    background-color: antiquewhite;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding-right: 50px;
}

nav ul li a {
    font-weight: bold;
    color: #070700;
}

.logo {
    padding-left: 30px;
}

.logo img {
    border-radius: 50px;
    padding: 8px;
}

section {
    padding: 50px;
}

section h2 {
    color: #333;
    padding-top: 30px;
}

p {
    text-align: justify;
}

.class-card {
    margin-top: 20px;
}

.class-card img {
    width: 50%;
    border-radius: 15px;
}

.map-container {
    position: relative;
    width: 50%;
    height: 40%;
    overflow: hidden;
    border-radius: 15px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #25D366; /* Warna hijau WhatsApp */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #128C7E; /* Warna hijau tua WhatsApp saat tombol dihover */
}


footer {
    color: #070700;
    padding: 10px 0;
    background-color: antiquewhite;
}

.menuicon {
    font-size: 25px;
    display: none;
    padding-right: 25px;
}

.posisi {
    position: fixed;
}

.footer {
    text-align: center;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width : 768px) {
    nav {
        flex-wrap: wrap;
        width: 100%;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    nav ul.hidden {
        display: none;
    }

    .menuicon {
        display: flex;
    }
}