/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #02539e; /* Warna latar belakang abu-abu muda seperti di situs asli */
    color: #343a40; /* Warna teks utama */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Main Container */
.container {
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    width: 100%;
    text-align: center;
    border-top: 5px solid #0d6efd; /* Aksen biru utama */
}

/* Header & Logo */
header {
    margin-bottom: 25px;
}

.logo {
    max-width: 220px;
    height: auto;
}

/* Typography */
h1 {
    color: #0d6efd; /* Warna biru utama untuk judul */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.lead {
    font-size: 18px;
    color: #6c757d; /* Warna abu-abu untuk sub-judul */
    margin-bottom: 30px;
}

.content {
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
    padding: 7px;
    color: #495057;
}

.content p {
    margin-bottom: 15px;
}

/* Links */
a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    margin-top: 30px;
    text-align: right;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 25px;
    }

    h1 {
        font-size: 24px;
    }

    .lead {
        font-size: 16px;
    }

    .content {
        font-size: 15px;
    }
}