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

:root {
    --navy: #2c3e50;
    --dark-navy: #1a252f;
    --teal: #98c6c6;
    --light-teal: #98c6c6;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #6c757d;
    --text-dark: #2d3748;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: var(--dark-navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--teal);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--light-teal);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-navy);
    padding: 0.75rem 1.75rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 47, 0.75);
    z-index: 1;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background-color: var(--teal);
    top: -150px;
    left: -100px;
}

.circle-2 {
    width: 600px;
    height: 600px;
    background-color: var(--light-teal);
    bottom: -200px;
    right: -150px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tagline {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--white);
}

.tagline h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.tagline p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.tagline-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonials {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.quote-icon {
    color: var(--teal);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: var(--dark-navy);
    font-weight: 600;
    margin-top: 1rem;
}

.about {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.about-description {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.who-we-serve {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.serve-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.serve-card:hover {
    transform: translateY(-5px);
}

.serve-icon {
    background-color: var(--dark-navy);
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

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

.serve-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.services-detail {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-5px);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card:hover .service-icon.teal {
    background-color: var(--white);
    color: var(--teal);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    transition: all 0.3s;
}

.service-icon.teal {
    background-color: var(--teal);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--dark-navy);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.features {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--teal);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-content h3 {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.benefits {
    padding: 4rem 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.benefit-card i {
    color: var(--teal);
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-dark);
    font-size: 1rem;
}

.stats {
    padding: 4rem 0;
    background-color: var(--dark-navy);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--light-teal);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-info {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 3rem;
}

.contact-info .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-info .contact-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.contact-info .contact-card a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info .contact-card a:hover {
    color: var(--light-teal);
}

.footer {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    opacity: 0.7;
}

.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.policy-content {
    padding: 4rem 0;
    background-color: var(--white);
}

.policy-content h2 {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin: 2.5rem 0 1rem;
}

.policy-content p,
.policy-content ul,
.policy-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content ul {
    padding-left: 2rem;
}

.policy-content strong {
    color: var(--dark-navy);
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-navy);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

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

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

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

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

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

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

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .subtitle {
        font-size: 1.1rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .footer-logo-img {
        height: 50px;
    }

    .footer-address {
        width: 100%;
    }

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

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

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

    .circle-1 {
        width: 300px;
        height: 300px;
    }

    .circle-2 {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .cta h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-header .subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

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

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

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

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

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

    .footer-links {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-address p {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 40px;
    }

    .service-card h3,
    .testimonial-card h4 {
        font-size: 1.1rem;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 5rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header .subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.page-header-with-image {
    background-image: url('attached_assets/outsource-it-inc-hayward-ca-location_1760646461209.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.85) 0%, rgba(44, 62, 80, 0.85) 100%);
    z-index: 1;
}

.page-header-with-image .container {
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.services-overview {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-navy);
}

.service-detail-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.service-detail-section.alt {
    background-color: var(--light-gray);
}

.service-detail-item {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-icon {
    background-color: var(--teal);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
}

.service-detail-item h2 {
    font-size: 2.25rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    text-align: center;
}

.service-detail-item .service-lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-detail-item h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-item ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-detail-item ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-detail-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
    font-size: 1.25rem;
}

.about-content {
    padding: 4rem 0;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.content-block .lead {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.mission-section {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
}

.mission-section h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1rem;
}

.who-we-serve-section {
    max-width: 900px;
    margin: 3rem auto;
}

.who-we-serve-section h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.serve-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.serve-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.serve-item i {
    color: var(--teal);
    font-size: 1.5rem;
}

.serve-item span {
    font-weight: 500;
}

.serve-description {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-choose-section {
    max-width: 1000px;
    margin: 3rem auto;
}

.why-choose-section h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    text-align: center;
    padding: 1.5rem;
}

.reason-card i {
    color: var(--teal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.reason-card p {
    color: var(--text-gray);
}

.leadership-section {
    max-width: 900px;
    margin: 3rem auto;
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
}

.leadership-section h2 {
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

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

.leader-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.closing-statement {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
}

.closing-statement .statement {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1rem;
}

.closing-statement .tagline {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-top: 1.5rem;
}

.contact-content {
    padding: 4rem 0;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-grid {
    max-width: 1000px;
    margin: 3rem auto;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-icon {
    background-color: var(--teal);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.75rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-card .note {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-icon {
    background-color: var(--teal);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.info-card h4 {
    font-size: 1.25rem;
    color: var(--dark-navy);
    margin-bottom: 0.75rem;
}

.info-card p,
.info-card a {
    color: var(--text-dark);
    text-decoration: none;
}

.info-card a:hover {
    color: var(--teal);
}

.support-section {
    max-width: 900px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.support-section h3 {
    font-size: 1.5rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.support-section a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.support-section a:hover {
    text-decoration: underline;
}

.faq-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-left: 4px solid var(--teal);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.35rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.faq-item p {
    line-height: 1.8;
    color: var(--text-dark);
}

.map-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-address {
    text-align: center;
}

.footer-address p {
    margin: 0.25rem 0;
}

.footer-address strong {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}
