/* CSS Variables */
:root {
    --navy-dark: #0d1b2a;
    --navy: #1b3a5f;
    --navy-light: #2d5a87;
    --gold: #c9a227;
    --gold-light: #e6c45a;
    --gold-dark: #a68519;
    --cream: #faf8f5;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #6b7280;
    --gray-dark: #374151;
    --text: #1f2937;
    --text-light: #4b5563;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy-dark);
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.nav-brand {
    text-decoration: none;
}

.nav-brand:hover .brand-wggh {
    color: var(--navy);
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    padding: 4px 0;
}

.brand-wggh {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: 5px;
    transition: color 0.3s ease;
}

.brand-divider {
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 5px 0 4px;
}

.brand-group {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy-dark);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding: 120px 24px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 16px;
    font-style: italic;
}

.hero-location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
}

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

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--cream);
}

.section-dark {
    background: var(--navy-dark);
    color: var(--white);
}

.section-dark h2 {
    color: var(--white);
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-block p {
    margin-bottom: 20px;
}

.lead {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 400;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.member-icon::before {
    content: attr(data-initials);
}

/* Names rendered via CSS to prevent Google indexing */
.member-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.member-name::before {
    content: attr(data-name);
}

/* Team member name styling handled by .member-name */

.member-title {
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.team-member p:last-child {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: left;
}

.team-note {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 25px 30px;
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-note p {
    margin: 0;
    color: var(--text-light);
}

.team-section-title {
    font-size: 1.3rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 50px 0 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

.team-section-title:first-of-type {
    margin-top: 30px;
}

.in-memoriam {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 8px;
}

.in-memoriam h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Source Sans Pro', sans-serif;
}

.memoriam-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.memoriam-member {
    padding: 20px;
}

.memoriam-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.memoriam-name::before {
    content: attr(data-name);
}

.memoriam-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.memoriam-tribute {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
}

/* Highlight Box */
.highlight-box {
    max-width: 700px;
    margin: 50px auto 0;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
}

.highlight-box p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
}

/* Commitment Section */
.commitment-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 30px 0;
    text-align: left;
}

.values-list li {
    padding: 15px 20px 15px 50px;
    background: var(--white);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--navy);
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Tax Updates */
.tax-block {
    margin-bottom: 40px;
}

.tax-block h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.tax-list {
    list-style: none;
    margin: 15px 0;
}

.tax-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tax-list li:last-child {
    border-bottom: none;
}

.tax-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Alert Box */
.alert-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    padding: 30px 35px;
    border-radius: 8px;
    margin-top: 40px;
}

.alert-box h3 {
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.alert-box p {
    margin: 0;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

thead {
    background: var(--navy);
    color: var(--white);
}

th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

tbody tr:hover {
    background: var(--cream);
}

tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 15px;
}

.subsection-title {
    font-size: 1.5rem;
    margin: 50px 0 20px;
    text-align: center;
}

/* Security Section */
.security-tips {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.security-tips p {
    margin-bottom: 15px;
}

/* CTA Sections */
.section-cta-existing {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
}

.section-cta-existing h2 {
    color: var(--white);
}

.section-cta-existing h2::after {
    background: var(--gold);
}

.section-cta-new {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    text-align: center;
}

.section-cta-new h2 {
    color: var(--navy-dark);
}

.section-cta-new h2::after {
    background: var(--navy-dark);
}

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

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 300;
}

.section-cta-existing .cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.section-cta-existing .cta-description {
    color: rgba(255, 255, 255, 0.8);
}

.btn-cta-existing {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-cta-existing:hover {
    background: var(--white);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.btn-cta-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-dark);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-new:hover {
    background: var(--white);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Client Portal Section */
.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portal-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.portal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy-dark);
}

.portal-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.portal-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--cream);
    color: var(--navy-dark);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portal-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.portal-btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.portal-btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.portal-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portal-new {
    border-top: 4px solid var(--navy);
}

.portal-existing {
    border-top: 4px solid var(--gold);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--navy);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-intro {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}

.contact-address {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-phone a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-phone a:hover {
    color: var(--gold);
}

.contact-fax {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-hours {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.affiliations {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.affiliations-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.affiliations-list {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-info {
    text-align: center;
}

.firm-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

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

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .values-list {
        grid-template-columns: 1fr;
    }

    th, td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 25px;
    }

    .alert-box {
        padding: 25px;
    }

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

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

    .contact-phone a {
        font-size: 1.3rem;
    }

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

    .portal-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .brand-wggh {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .brand-divider {
        width: 36px;
        margin: 4px 0 3px;
    }

    .brand-group {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .btn-cta-existing {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-new {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Print Styles */
@media print {
    .header, .nav, .btn {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 20px;
        background: var(--white);
    }

    .hero h1, .tagline, .hero-subtitle {
        color: var(--navy-dark);
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    .section-alt, .section-dark {
        background: var(--white);
    }

    .section-dark h2, .section-dark p {
        color: var(--navy-dark);
    }
}
