body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px 0;
    text-align: center;
}

.container {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border: 1px solid #eee;
}

.header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #007bff;
}

h1 {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 5px;
}

.header p {
    font-size: 0.9em;
    color: #666;
}

/* Tombol Rapi & Rata Tengah */
.button {
    display: block;
    max-width: 350px;
    padding: 15px 20px;
    margin: 0 auto 15px auto;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.05em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.primary-button {
    background-color: #007bff;
    color: white;
    box-shadow: 0 4px 0 #0056b3;
}

.primary-button:hover {
    background-color: #0056b3;
}

.secondary-button {
    background-color: #e9e9e9;
    color: #333;
    border: 1px solid #ccc;
    box-shadow: none;
}

.secondary-button:hover {
    background-color: #ddd;
}

.footer {
    margin-top: 25px;
    font-size: 0.8em;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* FAQ Styling */
.faq-section {
    margin-top: 25px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: left;
}
.faq-main-title { /* Styling untuk judul utama FAQ */
    font-size: 1.25em;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}
.faq-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h2 { /* INI ADALAH PERUBAHAN UTAMA: Target H2 */
    font-size: 0.95em;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}
.faq-item p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.4;
}