/* General Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

h1 {
    color: #1f3c88;
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid #1f3c88;
    padding-bottom: 10px;
}

h3 {
    color: #1f3c88;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 16px;
}

ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

table th {
    background-color: #1f3c88;
    color: white;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 26px;
    }
    table th, table td {
        padding: 10px;
    }
}
p {
    text-align: justify;
}