/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f3f5f9;
    color: #1f1f1f;
}

/* Page wrapper */
.wrap {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #d9eaff 0%, #f1f7ff 100%);
    color: #003366;
    padding: 40px 20px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Logo row */
.logos {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Logos */
.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

/* Titles */
.header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 0;
}

.header h2 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 4px;
    color: #235489;
}

/* Card sections */
.card {
    background: #ffffff;
    padding: 25px;
    margin: 20px 0;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Card hover animation */
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* Card headings */
.card h3 {
    font-size: 22px;
    margin-top: 0;
    color: #0a3d80;
}

/* Lists */
ul {
    padding-left: 20px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
}

table th, table td {
    border: 1px solid #d7d7d7;
    padding: 10px 12px;
}

table th {
    background: #eef3ff;
    font-weight: 600;
    color: #003366;
}

/* Links */
a {
    color: #0057cc;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #555;
    margin-top: 40px;
}
