/* =============================================================
   LAYOUT — Header, top banner, main content, footer
   ============================================================= */

/* --- Top Banner --- */
.top-banner {
    background: linear-gradient(135deg, #ba0c2f 0%, #d4154a 100%);
    padding: 12px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(186, 12, 47, 0.2);
}

.top-banner p {
    margin: 0;
    font-size: 14px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* --- Header --- */
.header {
    background-color: #003087;
    padding: 25px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(186, 12, 47, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.logo-container {
    background-color: #003087;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-container img {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.header-text {
    color: white;
}

.header-text h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-text p {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 400;
}

/* --- Main Content --- */
.main-content {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 40px;
}

/* --- Footer --- */
.footer {
    background-color: #003087;
    color: white;
    padding: 40px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(186, 12, 47, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 70px;
    margin-bottom: 24px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer p {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.8;
}

.footer .contact-info {
    margin-top: 18px;
    font-size: 14px;
}

.footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.3s ease;
}

.footer a:hover {
    border-color: white;
}
