/* Atur ulang dasar */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Latar belakang dan font halaman */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5; /* Latar belakang abu-abu muda */
    color: #333; /* Warna teks utama */
    display: flex;
    justify-content: center; /* Posisikan horizontal di tengah */
    align-items: center; /* Posisikan vertikal di tengah */
    min-height: 100vh; /* Tinggi minimal 100% dari viewport */
    text-align: center;
}

/* Kontainer utama konten */
.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Efek bayangan */
    max-width: 500px;
    width: 90%;
}

/* Ikon besar */
.icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

/* Judul Utama */
h1 {
    color: #007bff; /* Warna biru untuk branding */
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Pesan Inti */
.message {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 500;
}

/* Informasi Kontak */
.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee; /* Garis pemisah */
}

.contact-info h2 {
    font-size: 1.5em;
    color: #28a745; /* Warna hijau untuk kontak */
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Gaya untuk tautan kontak */
.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Bagian penutup */
.footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #6c757d;
}