:root {
    --teal: #1FB89A;
    --teal-dark: #178a73;
    --teal-light: #e8f8f5;
    --coral: #FF6F61;
    --coral-dark: #e05a4d;
    --white: #ffffff;
    --offwhite: #F9F8F6;
    --charcoal: #2C2C2C;
    --grey: #6B7280;
    --grey-light: #E5E7EB;
}

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

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top phone banner */
.phone-banner {
    background: var(--teal-dark);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin: 0 8px;
}

.phone-link:hover {
    color: var(--coral);
}

.phone-hours {
    color: rgba(255, 255, 255, 0.85);
}

/* Header */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 33px;
    z-index: 1000;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 72px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-links .nav-cta {
    background: var(--coral);
    color: white;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 700;
}

.nav-links .nav-cta:hover {
    background: var(--coral-dark);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 8px;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 4px 0;
    border-radius: 2px;
}

/* Main page content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 400px);
}

.page-hero {
    background: var(--offwhite);
    padding: 70px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--grey);
    font-size: 1.05rem;
}

.content-section {
    padding: 70px 0;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.content h2 {
    color: var(--teal);
    font-size: 1.15rem;
    margin: 28px 0 8px;
}

.content h2:first-child {
    margin-top: 0;
}

.content p,
.content li {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.8;
}

.content p {
    margin-bottom: 12px;
}

.content ul {
    margin: 8px 0 16px 20px;
}

.content li {
    margin-bottom: 8px;
}

.effective {
    color: var(--grey);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--offwhite);
    border-radius: 12px;
    padding: 28px 24px;
    border-top: 3px solid var(--teal);
}

.contact-card h2 {
    color: var(--charcoal);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-card a {
    color: var(--teal-dark);
    text-decoration: none;
    font-weight: 700;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 7px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin: 6px;
}

.btn-coral {
    background: var(--coral);
}

.btn-coral:hover {
    background: var(--coral-dark);
}

.btn-green {
    background: #25D366;
}

.btn-green:hover {
    background: #1da851;
}

/* Footer */
footer {
    background: var(--teal-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 48px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    max-height: 40px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 12px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.85rem;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
    .phone-banner {
        font-size: 12px;
    }

    .phone-hours {
        display: none;
    }

    nav {
        top: 34px;
    }

    .logo img {
        max-height: 56px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid var(--grey-light);
    }

    .nav-links .nav-cta {
        margin: 12px 20px;
        border-radius: 6px;
    }

    .page-hero {
        padding: 55px 0;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .content-section {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    @media (max-width: 900px) and (min-width: 769px) {
        .contact-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}
