:root {
    --color-deep-green: #2B5A3D;
    --color-teal: #00796B;
    --color-cream: #F5F5DC;
    --color-light-aqua: #E0F7FA;
    --color-dark: #333333;
    --color-white: #FFFFFF;
    --color-accent: #FFA726;
    --color-highlight: #e88632;
    --shadow-soft: 0 4px 10px rgba(0, 0, 0, 0.15);
    --radius-sm: 5px;
    --radius-md: 10px;
    --site-max-width: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--color-deep-green);
    background-color: var(--color-cream);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.navbar {
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
}

.nav-container {
    max-width: var(--site-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li::after {
    content: "•";
    color: var(--color-deep-green);
    font-size: 1.2rem;
    margin-left: 10px;
}

.nav-links li:last-child::after {
    content: "";
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-deep-green);
    transition: color 0.3s ease;
}

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

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(220px, 22vw, 320px);
    min-height: 52px;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background-color: var(--color-teal);
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
    background-color: var(--color-accent);
    transform: translateY(-1px);
}

.social-button {
    gap: 10px;
}

.social-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.footer {
    margin-top: 0;
    padding: 18px 20px;
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}

.footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links li::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-button {
        width: min(100%, 320px);
        font-size: 0.95rem;
    }
}

.page-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 15vh;
    padding: 16px 20px 8px;
    background-color: var(--color-light-aqua);
    text-align: center;
}

.page-hero-logo {
    width: clamp(180px, 30vw, 300px);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.page-hero-logo:hover,
.page-hero-logo:focus {
    transform: scale(1.08);
}

.nav-links a.active-page {
    color: var(--color-highlight);
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 15vh;
        padding: 12px 15px 6px;
    }

    .page-hero-logo {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 12vh;
    }

    .page-hero-logo {
        width: 150px;
    }
}