* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(to right, #003d7a 0%, #1a5490 100%);
    color: white;
    padding: 30px 20px;
    border-bottom: 4px solid #ffd700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.seal {
    font-size: 3rem;
    opacity: 0.9;
}

.header-content h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.tagline {
    font-size: 0.95rem;
    margin-top: 6px;
    opacity: 0.95;
    font-style: italic;
    font-weight: 300;
}

.alert-banner {
    background: white;
    border-top: 3px solid #ffd700;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    color: #003d7a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.alert-banner a {
    color: #003d7a;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.alert-banner a:hover {
    color: #ffd700;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    padding: 40px 20px;
}

section {
    background: white;
    padding: 28px;
    margin-bottom: 24px;
    border-left: 5px solid #003d7a;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

section:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

section h2 {
    font-size: 1.6rem;
    color: #003d7a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffd700;
    font-weight: 600;
}

section ul {
    list-style: none;
}

section li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-size: 1rem;
    color: #333;
    min-height: 1.5em;
    display: flex;
    align-items: center;
}

section li:before {
    content: "→";
    margin-bottom: 8px;
    position: absolute;
    left: 0;
    color: #003d7a;
    font-weight: bold;
    font-size: 1.1rem;
}

section a {
    color: #003d7a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

section a:hover {
    color: #ffd700;
    text-decoration: underline;
}

footer {
    background: #003d7a;
    color: white;
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    border-top: 4px solid #ffd700;
}

footer p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.footer-info {
    opacity: 0.85;
    font-size: 0.85rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .seal {
        font-size: 2.5rem;
    }

    header h1 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 20px;
    }
    
    section h2 {
        font-size: 1.3rem;
    }
    
    section li {
        font-size: 0.95rem;
    }

    main {
        padding: 20px 15px;
    }
}
