body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.logo {
    font-weight: bold;
}

/* NAVBAR */
.navbar {
    position: absolute;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    color: white;
    z-index: 10;
    box-sizing: border-box; /* INI KUNCI */
}

/* MENU */
.navbar ul {
    margin-left: auto; /* INI KUNCI */
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.navbar ul li a,
.navbar ul li a:visited {
    color: white;
    text-decoration: none;
}

.navbar ul li a:hover {
    color: #ffd700; /* opsional: kuning biar ada efek */
}

.navbar ul li a:active {
    color: white;
}

/* HERO */
.hero {
    position: relative;
    height: 400px;
    background: url('../img/banner.jpg') no-repeat center;
    background-size: cover;
}

/* OVERLAY GELAP */
.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

/* TEXT DI ATAS GAMBAR */
.hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
}

/* CONTENT */
.content {
    padding: 50px 40px; /* jangan terlalu besar */
    background: #ffffff;
    max-width: 1200px; /* ini penting */
    margin: auto; /* center */
    box-sizing: border-box;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.content ol {
    margin: 20px 0;
    padding-left: 50px; /* jangan terlalu besar */
    text-align: left; /* pastikan kiri */
}

.content ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}