/* Reset dasar untuk margin dan padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container utama */
.container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.main-title {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 10px;
}

/* Section */
.section {
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
}

.section-text {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.section-list {
    list-style-type: disc;
    margin-left: 20px;
}

.section-list li {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
}

.footer-text {
    font-size: 0.9em;
    color: #555;
}

.footer-link {
    color: #007bff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsivitas */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .main-title {
        font-size: 1.7em;
    }

    .section-title {
        font-size: 1.3em;
    }
}
