/* --- CSS Reset & Variables --- */
:root {
    --primary-navy: #1B2A47;
    /* Matches your logo's dark text/lines */
    --accent-teal: #00A99D;
    /* Matches your logo's teal highlights */
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

/* --- Navigation --- */
header {
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    /* Adjust based on your transparent logo */
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 600;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

/* --- Hero Section --- */
.hero {
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: #D1D5DB;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0.5rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: var(--text-light);
    border: 2px solid var(--accent-teal);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-teal);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-navy);
}

/* --- Sections (General) --- */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
    max-width: 100%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: var(--primary-navy);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    color: var(--accent-teal);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-navy);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer a {
    color: var(--accent-teal);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        /* Stacks the logo on top of the links */
        padding: 1rem;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        max-width: 100%;
        /* Forces the wide logo to shrink to fit the screen */
        height: auto;
        /* Keeps the proportions perfect */
        max-height: 60px;
        /* Provides a sensible maximum size */
    }

    .nav-links {
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        margin: 0.5rem 1rem;
        /* Creates better spacing for thumbs on mobile */
    }

    .hero h1 {
        font-size: 2rem;
        /* Shrinks the main text slightly for mobile */
    }
}