/* Reset dasar */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0044cc, #ffcc00);
    color: black;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    background: #000000;
    padding: 15px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: #ffcc00;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar a:hover {
    color: white;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(to right, #ffcc00, #002366);
    padding: 50px 20px;
    color: white;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}

/* Container */
.container {
    width: 85%;
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

h2 {
    text-align: center;
    color: #002366;
    font-size: 1.8em;
    margin-bottom: 20px;
}

p, ul {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
}

/* List */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Kontak */
p a {
    color: #002366;
    font-weight: bold;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
    color: #ffcc00;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background: #002366;
    color: white;
    font-size: 1em;
    margin-top: 40px;
}
