@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');




:root {
    --brand-blue: #1f3c88;
    --brand-green: #2fa84f;
    --text-dark: #212529;
    --bg-light: #f8f9fa;
}

body {
    font-family: "Google Sans", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

p {
    font-size: 15px;
    letter-spacing: 1.5;
}

/* Header */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    transition: all .3s ease;
}

.navbar-brand img {
    height: 48px;
}

.nav-link {
    font-weight: 500;
    margin: 0;
    color: var(--brand-blue);
    padding: 4px;
    font-size: 14px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand-green);
    text-decoration: underline;
}

/* Hero */
.hero {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.hero h1 {
    color: var(--bg-light);
    font-weight: 700;
}

.hero p {
    max-width: 720px;
}

.btn-primary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.btn-primary:hover {
    background-color: #162e66;
}

.btn-outline-success {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.btn-outline-success:hover {
    background-color: var(--brand-green);
    color: #fff;
}

/* Sections */
section {
    padding: 3.5rem 0;
}

.section-title {
    color: var(--brand-blue);
    font-weight: 600;
}

/* Cards */
.card {
    border: 1px solid #e6e6e6;
    height: 100%;
}

.card-title {
    color: var(--brand-blue);
    font-weight: 600;
}

/* Disclaimer */
.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #0f1f44;
    color: #dcdcdc;
    font-size: 0.9rem;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Accessibility */
:focus-visible {
    outline: 3px solid var(--brand-green);
    outline-offset: 2px;
}

.top-hero-section {
    background: linear-gradient(45deg, var(--brand-blue), var(--brand-green));
    color: white;
}

.bg-primary {
    background-color: var(--brand-blue) !important;
}


footer h5 {
    font-size: 16px;
    margin-bottom: 12px;
}

footer p {
    font-size: 14px;
}

footer ul li {
    margin-bottom: 6px;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    background: #fff;
    padding: 10px;
    z-index: 1000;
}