/* Basic styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: green;// latar menu    
    color: #fff;
    padding: 10px 0;
    width: 100%;
    top: 0;
    left: 0;
    position: sticky;
    z-index: 1000;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

header nav ul li a:hover {
    color: #f1c40f;
}

/* Section styles */
section {
    padding: 50px;
    margin-top: 60px; /* Add space to prevent overlap */
}

section h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    line-height: 1.6;
}
