
/* Header Styling */
header {
    text-align: center;
}

h1, h2, h3 {
    color: #0D4B8E;
}

/* Section Styling */
section {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    line-height: 1.6;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

th {
    background: #0D4B8E;
    color: #fff;
}

/* List Styling */


/* FAQ Section Styling */
details {
    margin-bottom: 10px;
}

details summary {
    font-weight: bold;
    cursor: pointer;
    color: #0D4B8E;
}

details p {
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        width: 95%;
    }
}
