/* ============================
   GLOBAL STYLES
   ============================ */

:root {
    --primary: #0b3c61;
    --secondary: #1f2933;
    --accent: #f59e0b;
    --bg: #f5f7fa;
    --light: #ffffff;
    --muted: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: #111827;
    line-height: 1.6;
    padding-bottom: 4rem;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


/* ============================
   HERO SECTION
   ============================ */

.hero {
    background: radial-gradient(circle at top left, #1d4ed8 0, #0b3c61 40%, #020617 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: #e5e7eb;
    max-width: 800px;
    margin: 0.5rem auto 2rem;
}

.btn, .btn-outline {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    margin: 0.3rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn {
    background: var(--accent);
    color: #111827;
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

/* ============================
   PAGE SECTIONS
   ============================ */

section {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

section h2 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.5rem;
}
section p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

/* Subtitle styling */
p.subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-top: 0.5rem;
    line-height: 1.5;
}
ul {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.4rem;
    color: #374151;
}

/* ============================
   CARDS
   ============================ */

.card {
    background: var(--light);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 2px rgba(15,23,42,0.05);
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.card p {
    color: var(--muted);
}

/* ============================
   TABLES
   ============================ */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
}

table th, table td {
    border: 1px solid #e5e7eb;
    padding: 0.6rem;
    text-align: left;
}

table th {
    background: #f3f4f6;
    font-weight: 600;
}

/* ============================
   MOBILE-FRIENDLY NAVIGATION
   ============================ */

.site-header {
    background: var(--primary);
    padding: 1rem 1.5rem 1.25rem;
    color: #fff;
	padding-bottom: 1.75rem;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.nav-menu {
    display: flex;
	justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
	width: 100%;
}

.nav-menu a {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================
   MOBILE BEHAVIOR
   ============================ */

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        background: var(--primary);
        padding: 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 0.75rem 1rem;
    }
}

/* ============================
   FOOTER
   ============================ */

.site-footer {
    background: var(--secondary);
    color: #e5e7eb;
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col li {
    margin-bottom: 0.4rem;
}

.footer-col a {
    color: #e5e7eb;
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    font-size: 0.85rem;
    color: #9ca3af;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

