@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f7fa;
    color: #333;
}

header, footer {
    background: #002b5b;
    color: white;
    text-align: center;
    padding: 1.5rem;
}

    header h1 {
        margin: 0;
        font-size: 2.2rem;
    }

.container {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

h2, h3 {
    color: #002b5b;
    margin-bottom: 0.5rem;
}

.section {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-in;
}

ul {
    list-style-type: square;
    padding-left: 1.5rem;
}

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

    a:hover {
        color: #004080;
    }

footer {
    font-size: 0.9rem;
}

.section ul li {
    padding: 0.3rem 0;
}

.section p, .section li {
    line-height: 1.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 1rem;
    }
}

/* CTA style */
.section a.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: #004080;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .section a.button:hover {
        background-color: #0066cc;
    }
