body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #eef3f8;
    color: #1a1a1a;
}

/* Logo above banner */
.logo-banner {
    text-align: center;
    background: white;
    padding: 12px 0 0;
}
.banner-logo {
    width: 290px;
    height: auto;
    opacity: 0.95;
    margin-bottom: 8px;
}

/* Banner */
header {
    background: white;
    color: #0a3d62;
    text-align: center;
    padding: 8px 20px 12px;
    border-bottom: 3px solid #0a3d62;
}
header p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0a3d62;
}
.section p {
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Info Boxes */
.info-box {
    background: white;
    padding: 25px;
    border-left: 6px solid #1e5799; /* consistent blue strip */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 25px;
}
.info-box h3 {
    margin-top: 0;
    color: #0a3d62;
}
.info-box ul {
    margin: 10px 0 0;
    padding-left: 20px;
}
.info-box li {
    margin-bottom: 6px;
}

/* Contact */
.contact-details {
    font-size: 1.15rem;
    line-height: 1.8;
}
.contact-details a {
    color: #0a3d62;
    text-decoration: none;
    font-weight: 600;
}
.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0a3d62;
    color: white;
    margin-top: 40px;
    font-size: 0.9rem;
}
