* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Background gradasi biru-putih */
body {
    background: linear-gradient(135deg, #ffffff, #d7e8ff, #a9c9ff);
    min-height: 100vh;
    padding: 40px;
}

/* Card utama */
.container {
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Judul */
.title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0e3c80;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Gambar */
.image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.image-wrapper img {
    width: 65%;
    max-width: 340px;
    border-radius: 16px;
    border: 3px solid #0e3c80;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

/* Judul setiap bagian */
.content h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 600;
    color: #0e3c80;
    padding-left: 12px;
    border-left: 6px solid #0e3c80;
}

/* Subjudul */
.content h3 {
    margin-top: 20px;
    color: #1a4c9a;
    font-weight: 600;
}

/* Paragraf */
.content p {
    margin-bottom: 14px;
    line-height: 1.85;
    text-align: justify;
    color: #1f2d40;
}

/* List */
.content ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

.content ul li {
    margin-bottom: 7px;
    color: #1f2d40;
    font-size: 15.5px;
}

/* Link (kalau nanti kamu tambah menu atau tombol) */
a {
    color: #0e3c80;
    font-weight: 600;
}
a:hover {
    color: #052c65;
}
