/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Background halaman */
body {
    background: #eef2f7;
    padding: 40px;
}

/* Card utama */
.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Heading */
h1 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 25px;
}

h2 {
    color: #3749ae;
    margin-top: 25px;
    margin-bottom: 10px;
    border-left: 5px solid #3749ae;
    padding-left: 12px;
}

/* Text */
p {
    line-height: 1.8;
    margin-bottom: 8px;
}

/* List */
ul {
    margin-left: 20px;
    padding-left: 20px;
    line-height: 1.8;
}

/* Link */
a {
    color: #2563eb;
    font-weight: bold;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Kontak */
.contact p b {
    color: #111;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    font-size: 14px;
    color: #555;
}
