@media (min-width: 1024px) {
    .slideshow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 67vw;
    max-width: 67vw;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    height: calc((100vh - var(--site-header-height)) * 0.67);
    position: relative;
    }
    .slides {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: static;
    }
    .slideshow img {
    width: 40%;
    max-width: 40%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    }
    .slide-caption {
        position: static;
        /* stronger, elegant dark overlay so caption stands out against images */
        background: linear-gradient(to right, rgba(11,17,16,0.72), rgba(11,17,16,0.60));
        color: #fff;
        padding: 2rem 2.5rem;
        border-radius: 0 8px 8px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
        backdrop-filter: blur(6px);
        max-width: 60%;
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
    }

    /* Headings inside captions: bright for strong contrast */
    .slide-caption h3 {
        color: #fff;
        text-shadow: 0 2px 6px rgba(0,0,0,0.5);
        margin: 0 0 0.5rem 0;
    }

    .slide-caption p,
    .slide-caption strong {
        color: rgba(255,255,255,0.92);
    }
    .slideshow-prev,
    .slideshow-next {
    top: 50%;
    transform: translateY(-50%);
    }
    .slideshow-dots {
    bottom: 18px;
    }
}

/* Force hidden slides to remain hidden (override any display rules) */
.slideshow .slides[hidden] {
    display: none !important;
}

/* Ensure the active (non-hidden) slide fills the slideshow area on desktop */
.slideshow .slides:not([hidden]) {
    display: flex !important;
    flex: 1 1 100% !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Montserrat:wght@400;600;700;800&display=swap');

:root {
    --site-header-height: 120px; /* approx height of combined header+nav; tuned per breakpoint below */
}

html {
    scroll-padding-top: var(--site-header-height);
    scroll-behavior: smooth; /* smooth anchor jumps */
}

/* Ensure anchored targets are offset below the sticky header */
main > section {
    scroll-margin-top: var(--site-header-height);
}

@media (max-width: 768px) {
    :root { --site-header-height: 160px; }
}

@media (max-width: 480px) {
    :root { --site-header-height: 200px; }
}

@media (max-width: 360px) {
    :root { --site-header-height: 220px; }
}

/* Avoid double-offset: let html's scroll-padding handle anchor offset */
main > section {
    scroll-margin-top: 0;
}

/* Desktop: slightly reduce the offset so headings sit closer under the header */
@media (min-width: 769px) {
    main > section {
        scroll-margin-top: calc(var(--site-header-height) - 20px);
    }
}

body {
    background-color: #fbfaf7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #090c0a;
}

/* Typography: modern, professional fonts and stronger headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #090c0a;
}

h2 {
    color: #e4601f;
    text-shadow: 0 6px 18px rgba(228,96,31,0.06);
}

/* Section headings: centered, more prominent, with accent bar */
#main > section h2,
section h2 {
    display: block;
    text-align: center;
    margin: 0 auto 1rem;
    width: 100%;
    font-size: clamp(1.6rem, 4.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #0b1110;
}

#main > section h2::after,
section h2::after {
    content: '';
    display: block;
    margin: 0.6rem auto 0;
    width: 72px;
    height: 4px;
    background-color: #e4601f;
    border-radius: 2px;
    box-shadow: 0 6px 18px rgba(228,96,31,0.06);
}

@media (max-width: 480px) {
    #main > section h2,
    section h2 {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
    }
    #main > section h2::after,
    section h2::after {
        width: 48px;
        height: 3px;
        margin-top: 0.5rem;
    }
}

h3 {
    color: #2a9d8f;
    font-weight: 700;
    letter-spacing: 0.4px;
}

h1 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.logo {
    height: auto;
    width: clamp(90px, 20vw, 150px);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
    }
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
}

/* Make header + nav stick together at the top */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(180deg, rgba(251,250,247,0.95), rgba(255,255,255,0.9));
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Back to projects button near the top */
.back-to-projects {
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    display: inline-block;
    padding: 0.35rem 0.6rem;
    font-size: 0.9rem;
    line-height: 1;
    color: #0b1020;
    background: #5dd6ff; /* match homepage accent */
    border: 1px solid rgba(93, 214, 255, 0.5);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(93, 214, 255, 0.25);
}

.back-to-projects:hover { filter: brightness(1.06); }
.back-to-projects:active { filter: brightness(0.98); }
.back-to-projects:focus-visible {
    outline: 3px solid #090c0a;
    outline-offset: 2px;
}

nav {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: #e4601f;
    border-top: 1px solid #e0e0e0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #090c0a;
    font-weight: 500;
    transition: color 0.3s ease, outline 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    display: inline-block;
}

nav a:hover {
    color: #fbfaf7;
}

nav a:focus-visible {
    outline: 3px solid #090c0a;
    outline-offset: 2px;
    color: #fbfaf7;
}

nav a:active {
    color: #fbfaf7;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #090c0a;
    color: #fbfaf7;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    nav a {
        border: 2px solid transparent;
    }

    nav a:focus {
        border-color: #090c0a;
        outline-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    nav a {
        transition: none;
    }

    nav a:active {
        transform: none;
    }
}

/* Hero Section Styling */
#hero {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fbfaf7 0%, #fff 100%);
    border-bottom: 4px solid #e4601f;
    text-align: center;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: #090c0a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: #e4601f;
    border-radius: 2px;
}

#hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #090c0a;
    margin-top: 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

section {
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

section h2::after {
    display: none;
}

/* Services Section Grid */
#services {
    background-color: #fff3e0;
}

#services h2 {
    margin-bottom: 2.5rem;
}

/* About Section */
#about {
    background-color: #e0f7f5;
}

/* Contact Section */
#contact {
    background-color: #fff0e8;
}

.service-category {
    background-color: #fff;
    border-top: 4px solid #2a9d8f;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, outline 0.3s ease;
    outline: 3px solid transparent;
    outline-offset: 2px;
}

/* Make entire service cards clickable while preserving styling */
.service-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-link:focus-visible {
    outline: 3px solid #2a9d8f;
    outline-offset: 4px;
    border-radius: 8px;
}

/* Ensure hover on link also triggers card hover affordance */
.service-link:hover .service-category,
.service-link:focus-within .service-category {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(42, 157, 143, 0.15);
}

/* Slideshow styles */
.slideshow {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.slideshow img {
    width: 100%;
    height: 420px; /* fixed visual area for images */
    object-fit: cover; /* preserves aspect ratio without distortion */
    display: block;
}

.slides {
    position: relative;
    display: block;
}

/* Ensure hidden slides are not displayed (override any display rules) */
.slides[hidden] {
    display: none !important;
}

.slide-caption {
    padding: 1.25rem;
    text-align: left;
}

/* Section intro: center and stylize first paragraph in main sections */
#main > section > p:first-of-type,
.section-intro {
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: center;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    color: #333;
    line-height: 1.9;
    font-weight: 500;
    background: linear-gradient(90deg, rgba(228,96,31,0.03), rgba(42,157,143,0.03));
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

@media (max-width: 480px) {
    #main > section > p:first-of-type,
    .section-intro {
        margin: 1rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .slideshow {
        display: flex;
        align-items: stretch;
        justify-content: center;
        width: 67vw;
        max-width: 67vw;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        height: calc((100vh - var(--site-header-height)) * 0.67);
        position: relative;
    }
    .slides {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        width: 100%;
        height: 100%;
        position: static;
    }
    .slideshow img {
        width: 40%;
        max-width: 40%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    .slide-caption {
        position: relative;
        background: rgba(0,0,0,0.45);
        color: #fff;
        padding: 2rem 2.5rem;
        border-radius: 0 8px 8px 0;
        max-width: 60%;
        width: 60%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        left: 0;
        bottom: 0;
        top: 0;
        right: 0;
        z-index: 1;
    }
    .slideshow-prev,
    .slideshow-next {
        top: 50%;
        transform: translateY(-50%);
    }
    .slideshow-dots {
        bottom: 18px;
    }
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.slideshow-prev { left: 12px; }
.slideshow-next { right: 12px; }

.slideshow-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 12px;
    background: rgba(255,255,255,0.9);
}

.slideshow-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
}

.slideshow-dots button[aria-selected="true"] {
    background: #e4601f;
}

@media (max-width: 768px) {
    .slideshow img { height: 360px; }
}

@media (max-width: 480px) {
    .slide-caption { padding: 0.75rem; }
    .slideshow { margin: 1rem; }
    .slideshow img { height: 240px; }
}

/* Fullscreen slideshow overrides */
.slideshow {
    max-width: none;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    height: calc(100vh - var(--site-header-height));
    overflow: hidden;
    position: relative;
}

.slides {
    position: absolute;
    inset: 0;
    display: block;
}

.slides[hidden] {
    display: none !important;
}

.slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 769px) {
    .slideshow img {
        object-position: top;
    }
}

.slide-caption {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    background: rgba(0,0,0,0.45);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    max-width: min(60%, 680px);
    text-align: left;
    z-index: 40;
}

.slideshow-prev,
.slideshow-next {
    z-index: 45;
    background: rgba(0,0,0,0.45);
}

.slideshow-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    background: transparent;
    padding: 0;
    z-index: 45;
}

@media (max-width: 768px) {
    .slideshow { height: calc(100vh - var(--site-header-height)); }
    .slide-caption { left: 1rem; right: 1rem; max-width: none; }
}

@media (max-width: 480px) {
    .slideshow { height: calc(70vh - var(--site-header-height)); }
    .slide-caption { bottom: 10px; left: 8px; right: 8px; padding: 0.6rem; }
}

/* Packages grid: center and render as cards */
#packages .package-grid {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
    padding: 0;
    margin: 1.5rem auto;
    max-width: 900px;
}

#packages .package-grid li {
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    border: 1px solid rgba(11,17,16,0.06);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    min-width: 200px;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#packages .pkg-title {
    font-weight: 700;
    color: #0b1110;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

#packages .pkg-price {
    color: #e4601f;
    font-weight: 800;
    font-size: 1.15rem;
}

#packages .package-grid li:hover,
#packages .package-grid li:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.10);
}

@media (max-width: 768px) {
    #packages .package-grid {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    #packages .package-grid li { max-width: none; }
}

/* Desktop: reduce the fullscreen slideshow height by ~33% so it doesn't dominate */
@media (min-width: 769px) {
    .slideshow {
        height: calc((100vh - var(--site-header-height)) * 0.67);
    }
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(42, 157, 143, 0.15);
}

.service-category:focus-within {
    outline: 3px solid #2a9d8f;
}

.service-category h3 {
    color: #2a9d8f;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e4601f;
}

.service-category p {
    color: #666;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #090c0a;
    font-weight: 500;
    line-height: 1.5;
}

.service-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e4601f;
    font-weight: bold;
}

#services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

#services h2 {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    #services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-category {
        padding: 1.25rem;
    }
}

/* Desktop: center exactly three service cards on one row */
@media (min-width: 1024px) {
    #services {
        grid-template-columns: repeat(3, minmax(280px, 320px));
        justify-content: center; /* center the column group */
        align-items: start;
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    .service-category {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    #services {
        gap: 1rem;
    }

    .service-category {
        padding: 1rem;
    }

    .service-category h3 {
        font-size: 1.1rem;
    }
}


@media (max-width: 768px) {
    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    header {
        padding: 1rem;
    }

    nav {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
        font-size: 0.8rem;
    }

    header {
        padding: 0.75rem;
    }

    nav {
        padding: 0.75rem;
    }
}

/* About Section Styling */
#about {
    background-color: #fbfaf7;
}

#about h2 {
    border-left: 4px solid #e4601f;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

/* Remove left accent for specific headings with .no-left-accent */
#about h2.no-left-accent {
    border-left: none;
    padding-left: 0;
}

#about h3 {
    color: #2a9d8f;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-content {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #e4601f;
    border-radius: 4px;
    margin-bottom: 2.5rem;
}

.about-content p {
    color: #090c0a;
    line-height: 1.8;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    margin-bottom: 2.5rem;
}

/* Desktop: increase h3 sizes for improved readability/emphasis */
@media (min-width: 1024px) {
    h3 {
        font-size: 1.6rem;
        line-height: 1.25;
    }

    /* Slightly larger for card/about/testimonial headings */
    .service-category h3,
    #about h3,
    .testimonials h3 {
        font-size: 1.75rem;
    }
}

.testimonials h3 {
    margin-top: 0;
}

.testimonials blockquote {
    background-color: #fff;
    border-left: 4px solid #2a9d8f;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonials blockquote p {
    color: #090c0a;
    font-style: italic;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.testimonials blockquote footer {
    color: #666;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
}

/* Location & Hours Section */
.location-hours {
    background-color: #fff;
    padding: 1.5rem;
    border-top: 4px solid #2a9d8f;
    border-radius: 4px;
    margin-top: 2rem;
}

.location-hours p {
    color: #090c0a;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.location-hours strong {
    color: #2a9d8f;
    font-weight: 600;
}

@media (max-width: 768px) {
    #about h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .about-content,
    .location-hours {
        padding: 1.25rem;
    }

    .testimonials blockquote {
        padding: 1rem;
    }
}

/* Strong desktop overrides to ensure side-by-side slideshow layout (prevents caption overlay) */
@media (min-width: 1024px) {
    .slideshow {
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important;
        width: 67vw !important;
        max-width: 67vw !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
        height: calc((100vh - var(--site-header-height)) * 0.67) !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .slideshow > .slides,
    .slideshow .slides {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        width: 100% !important;
        height: 100% !important;
        position: static !important;
    }

    .slideshow img {
        width: 40% !important;
        max-width: 40% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: top !important;
        display: block !important;
        border-top-left-radius: 8px !important;
        border-bottom-left-radius: 8px !important;
    }

    .slide-caption {
        position: relative !important;
        background: rgba(0,0,0,0.45) !important;
        color: #fff !important;
        padding: 2rem 2.5rem !important;
        border-radius: 0 8px 8px 0 !important;
        max-width: 60% !important;
        width: 60% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
        left: auto !important;
        bottom: auto !important;
        top: auto !important;
        right: auto !important;
        z-index: 1 !important;
    }

    /* ensure controls are visible and outside the content flow */
    .slideshow-prev, .slideshow-next {
        position: absolute !important;
        z-index: 50 !important;
    }
}

@media (max-width: 480px) {
    #about h3 {
        font-size: 1.2rem;
    }

    .about-content,
    .location-hours {
        padding: 1rem;
    }

    .testimonials blockquote {
        padding: 0.875rem;
        margin: 1rem 0;
    }
}

/* Contact Section */
#contact h2 {
    border-left: 4px solid #e4601f;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

#contact h3 {
    color: #2a9d8f;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-info,
.contact-schedule {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #2a9d8f;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info p,
.contact-schedule p {
    color: #090c0a;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-info strong,
.contact-schedule strong {
    color: #e4601f;
    font-weight: 600;
}
