﻿
:root {
    --navy: #0b2d5c;
    --navy-dark: #081f42;
    --blue: #1a56b0;
    --blue-light: #3b82f6;
    --red: #ee3b3b;
    --ink: #12233f;
    --muted: #5c6b83;
    --bg-soft: #f4f7fb;
    --white: #ffffff;
    --border: #e4e9f2;
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--navy-dark);
    color: #cfe0ff;
    font-size: 13px;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 38px;
    }

.topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}
    .topbar-left span {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        font-family: "Poppins", sans-serif;
    }
.topbar-right .links a {
    font-family: "Poppins", sans-serif;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

    .topbar-right .links {
        display: flex;
        gap: 14px;
    }

        .topbar-right .links a:hover {
            color: #fff;
        }

.social {
    display: flex;
    gap: 10px;
}

    .social a {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }

.icon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}

/* ===== HEADER / NAV ===== */
header.main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .brand .logo {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: radial-gradient(circle at 30% 30%, #fff, #dfe9ff);
        border: 2px solid var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: var(--red);
        font-size: 16px;
        flex-shrink: 0;
    }

.brand-text h1 {
    font-size: 19px;
    color: var(--navy);
    letter-spacing: .3px;
}

.brand-text p {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .4px;
}
nav.primary {
    display: flex;
    gap: 36px;
    width: 72%;
    justify-content: flex-end;
}
    nav.primary a {
        font-size: 14.5px;
        font-weight: 400;
        color: #2b3a55;
        position: relative;
        padding: 6px 0;
        font-family: "Poppins", sans-serif;
    }
header.main a.btn.btn-navy.nav-cta {
    font-size: 14px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
a.brand {
    display: block;
    max-width: 70px;
}
    a.brand img {
        width: 100%;
    }
        nav.primary a.active {
            color: var(--blue);
        }

            nav.primary a.active::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: -2px;
                width: 100%;
                height: 2px;
                background: var(--blue);
            }

        nav.primary a:hover {
            color: var(--blue);
        }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}

    .btn-navy:hover {
        background: var(--navy-dark);
    }

.btn-white {
    background: #fff;
    color: var(--navy);
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 6px;
}

    .hamburger span {
        width: 26px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 2px;
    }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 440px;
    background-image: url('../img/myimages/ssbanner.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
}
    .hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 40px;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }

.hero-copy .eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #9fc1ff;
    margin-bottom: 14px;
}
.hero-copy h2 {
    font-size: 44px;
    line-height: 1.18;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: "Valley Sans", sans-serif;
    color: #fff;
}
.service-card .ic img {
    height: 50px;
    color: #0b2d5c;
    filter: brightness(0) saturate(100%) invert(13%) sepia(45%) saturate(2490%) hue-rotate(197deg) brightness(95%) contrast(98%);
}
    .hero-copy h2 .accent {
        color: #4fa3ff;
    }
.hero-copy p {
    font-size: 15.5px;
    color: #dbe6ff;
    max-width: 480px;
    margin-bottom: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
    .hero-actions .btn {
        gap: 10px;
        font-family: "Valley Sans", sans-serif;
        font-size: 15px;
        position: relative;
        font-weight: 600;
    }
    .hero-actions .btn-red {
        gap: 10px;
    }
.hero-visual {
    position: relative;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    display: none;
}

    .hero-visual .bld {
        position: absolute;
        inset: 0;
        background: linear-gradient(160deg,#dfe9f5,#a9c1de);
        border-radius: 16px;
    }

        .hero-visual .bld::before {
            content: 'SS HOSPITAL';
            position: absolute;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: var(--navy);
            font-weight: 800;
            font-size: 13px;
            padding: 6px 16px;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,.15);
        }

.tagline-script {
    position: absolute;
    top: 20px;
    right: 0;
    font-family: 'Brush Script MT', cursive;
    font-style: italic;
    font-size: 20px;
    color: #fff;
    text-align: right;
    line-height: 1.3;
    z-index: 3;
}
.hero-dots {
    display: flex;
    gap: 6px;
    margin-top: 22px;
    display: none;
}

    .hero-dots span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255,255,255,.4);
    }

        .hero-dots span.active {
            background: #fff;
            width: 20px;
            border-radius: 4px;
        }
.feature-strip {
    position: relative;
    z-index: 2;
    background: rgba(6,20,45,.55);
    backdrop-filter: blur(2px);
    border-top: 1px solid rgba(255,255,255,.15);
    display: none;
}

    .feature-strip .container {
        display: grid;
        grid-template-columns: repeat(5,1fr);
        gap: 10px;
        padding: 22px 24px;
    }

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #eaf1ff;
    font-size: 13px;
    font-weight: 600;
}

    .feature-item .ic {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255,255,255,.14);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 16px;
    }

/* ===== QUICK SERVICES ===== */
.services {
    background: var(--bg-soft);
    padding: 40px 0;
}
.services-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 38px;
    align-items: end;
}
    .services-head .eyebrow {
        color: var(--blue);
        font-weight: 700;
        font-size: 12.5px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        text-align: left;
        font-family: "Valley Sans", sans-serif;
    }
    .services-head h3 {
        font-size: 32px;
        color: var(--navy);
        font-weight: 700;
        line-height: 1.2;
        font-family: "Valley Sans", sans-serif;
    }
    .services-head p {
        color: var(--muted);
        font-size: 16px;
        max-width: 100%;
        text-align: right;
        font-family: "Poppins", sans-serif;
    }
.services-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(20,40,80,.06);
    border: 1px solid var(--border);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 26px rgba(20,40,80,.12);
    }
    .service-card .ic {
        width: 86px;
        height: 86px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 22px;
    }

.ic-red {
    background: #fde3e3;
    color: var(--red);
}

.ic-blue {
    background: #dbeaff;
    color: var(--blue);
}

.ic-green {
    background: #dcf6e8;
    color: #159a5b;
}

.ic-purple {
    background: #ece3fb;
    color: #7c3aed;
}

.ic-orange {
    background: #ffe7d6;
    color: #e8730a;
}

.ic-teal {
    background: #d8f3ee;
    color: #0f9488;
}
.service-card h4 {
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 20px;
    min-height: 40px;
    font-family: "Valley Sans", sans-serif;
}
.service-card .tag {
    font-size: 14px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}
.tag-red {
    color: var(--red);
}

.tag-blue {
    color: var(--blue);
}

.tag-green {
    color: #159a5b;
}

.tag-muted {
    color: var(--muted);
    font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
    padding: 30px 0;
}
    .about .container {
        display: grid;
        grid-template-columns: 1fr 1fr .55fr;
        gap: 36px;
        align-items: center;
    }

.about-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 360px;
    background: linear-gradient(160deg,#f0e9df,#d8ccb8);
}

.about-copy .eyebrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Valley Sans", sans-serif;
}
.about-copy h3 {
    font-size: 32px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 35px;
    font-family: "Valley Sans", sans-serif;
}
.about-copy p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 26px;
    line-height: 23px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}
.stats {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: var(--bg-soft);
    padding: 26px 22px;
    border-radius: 16px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
}
    .stat .ic {
        width: 74px;
        height: 74px;
        border-radius: 12px;
        background: #dbeaff;
        color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }
        .stat .ic img {
            height: 60px;
            color: #035590;
            filter: brightness(0) saturate(100%) invert(18%) sepia(42%) saturate(4849%) hue-rotate(190deg) brightness(99%) contrast(98%);
        }
    .stat h5 {
        font-size: 21px;
        color: var(--navy);
        font-weight: 800;
        line-height: 21px;
        margin: 0;
        font-family: "Valley Sans", sans-serif;
    }
    .stat p {
        font-size: 12.5px;
        color: var(--muted);
    }

/* ===== FOOTER (simple, matches brand) ===== */
footer {
    background: var(--navy-dark);
    color: #c7d6f0;
    padding: 36px 0;
    font-size: 13.5px;
    text-align: center;
}

    footer strong {
        color: #fff;
    }
header.main a.btn.btn-navy.nav-cta img {
    height: 20px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.hero-actions a.btn img {
    height: 30px;
}
.hero-actions a.btn.btn-red img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.hero-actions a.btn.btn-white:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(67%) saturate(21%) hue-rotate(321deg) brightness(105%) contrast(105%);
}
/* =========================================
   NAV DROPDOWN
========================================= */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


    /* MAIN DROPDOWN LINK */
    .nav-dropdown > .dropdown-link {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #2b3a55;
        font-weight: 400;
        white-space: nowrap;
    }
    /* PLUS ICON */

    .nav-dropdown .arrow {
        font-size: 22px;
        line-height: 1;
        color: #00a9c7;
        font-weight: 500;
        transition: transform .3s ease;
    }
.dropdown-menuw {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    width: 260px;
    opacity: 0;
    visibility: visible;
    border-radius: 10px;
    box-shadow: 0 0 40px 0 #0000001c;
    overflow: hidden;
}
.nav-dropdown:hover .dropdown-menuw {
    opacity: 1;
    visibility: visible;
}
 
        /* =========================================
   DROPDOWN LINKS
========================================= */

.nav-dropdown .dropdown-menuw a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 20px;
    color: #253653;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #edf0f5;
    transition: background .25s ease, color .25s ease, padding-left .25s ease;
    background: #fff;
}

    .nav-dropdown .dropdown-menuw a:last-child {
        border-bottom: none;
    }

.social a img {
    height: 13px;
    filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(25%) hue-rotate(54deg) brightness(106%) contrast(106%);
}
            /* SMALL ARROW BEFORE ITEM */
/*
    .nav-dropdown .dropdown-menuw a::before {
        content: "›";
        color: #00a9c7;
        font-size: 21px;
        margin-right: 9px;
        line-height: 0;
        transition: .25s ease;
    }
*/

            /* HOVER */

            .nav-dropdown .dropdown-menu a:hover {
                background: #f2fbfd;
                color: #0095b1;
                padding-left: 25px;
            }


                .nav-dropdown .dropdown-menu a:hover::before {
                    color: #0b1b3a;
                }


    /* =========================================
   OPEN DROPDOWN ON HOVER
========================================= */




    /* PLUS ROTATION */

    .nav-dropdown:hover .arrow {
        transform: rotate(45deg);
    }


    /* =========================================
   SMALL TOP ARROW
========================================= */

    .nav-dropdown .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 15px;
        height: 15px;
        background: #ffffff;
        border-left: 1px solid #ddd;
        border-top: 1px solid #ddd;
        transform: translateX(-50%) rotate(45deg);
    }
.responsive {
    display: none;
}





/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-copy h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .feature-strip .container {
        grid-template-columns: repeat(3,1fr);
    }

    .about .container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "img copy" "stats stats";
    }

    .about-img {
        grid-area: img;
    }

    .about-copy {
        grid-area: copy;
    }

    .stats {
        grid-area: stats;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .stats .stat {
            flex: 1 1 45%;
        }
    .hero-copy h2 {
        padding: 0 50px 0 0;
    }
    nav.primary {
        gap: 24px;
        width: 67%;
    }
}

@media (max-width: 860px) {
    .topbar .links {
        display: none;
    }
    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 45px;
        height: 45px;
        border: 0;
        background: #0b1b3a;
        border-radius: 6px;
        cursor: pointer;
        padding: 0;
    }

        .hamburger span {
            display: block;
            width: 23px;
            height: 2px;
            background: #fff;
            transition: all .3s ease;
        }


    /* =====================================
       HTML MENU OPEN CLASS
    ===================================== */

    html.menu-open {
        overflow: hidden;
    }


    /* =====================================
       NAVIGATION
    ===================================== */
    #primaryNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 25px 30px;
        box-sizing: border-box;
        overflow-y: auto;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
        z-index: 9998;
        gap: 11px;
    }


    /* OPEN NAV */

    html.menu-open #primaryNav {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }


    /* =====================================
       NORMAL MENU LINKS
    ===================================== */

    #primaryNav > a, #primaryNav .dropdown-link {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 5px;
        color: #0b1b3a;
        text-decoration: none;
        font-size: 17px;
        font-weight: 400;
        border-bottom: 1px solid #e8edf3;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* =====================================
       DROPDOWN
    ===================================== */

    #primaryNav .nav-dropdown {
        width: 100%;
        display: block;
    }


    /* =====================================
       SUBMENU
    ===================================== */

    #primaryNav .dropdown-menuw {
        position: static;
        width: 100%;
        box-sizing: border-box;
        display: none;
        background: #f5f9fc;
        padding: 5px 0;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    /* SUBMENU OPEN */

    #primaryNav .nav-dropdown.submenu-open .dropdown-menuw {
        display: block;
    }


    /* SUBMENU LINKS */

    #primaryNav .dropdown-menuw a {
        display: flex;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 18px;
        color: #33445d;
        background: transparent;
        border-bottom: 1px solid #e2e9ef;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }


        #primaryNav .dropdown-menuw a:last-child {
            border-bottom: 0;
        }


        #primaryNav .dropdown-menuw a:hover {
            background: #e8f7fa;
            color: #0095b1;
        }


    /* =====================================
       PLUS ICON
    ===================================== */

    #primaryNav .arrow {
        font-size: 25px;
        color: #00a9c7;
        transition: transform .3s ease;
    }


    #primaryNav .nav-dropdown.submenu-open .arrow {
        transform: rotate(45deg);
    }


    /* =====================================
       HAMBURGER ANIMATION
    ===================================== */

    html.menu-open .hamburger {
        position: relative;
        z-index: 10001;
        background: #d71920;
    }


        html.menu-open .hamburger span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        html.menu-open .hamburger span:nth-child(2) {
            opacity: 0;
        }

        html.menu-open .hamburger span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
    .nav-cta {
        display: none;
    }
    .services-head {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 260px;
        order: -1;
    }

    .hero-copy h2 {
        font-size: 30px;
    }

    .feature-strip .container {
        grid-template-columns: repeat(2,1fr);
    }
    .hero-copy h2 {
        padding: 0 310px 0 0;
    }
    .about .container {
        display: block;
    }
    .services-head p {
        text-align: left;
    }
    .hero {
        min-height: 350px;
    }
    .responsive {
        display: block;
        margin: 0 0 20px 0;
    }
    .desktop {
        display: none;
    }
    .topbar {
        display: none;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .topbar .container {
        flex-wrap: wrap;
        height: auto;
        padding: 6px 16px;
    }

    .topbar-left {
        gap: 12px;
        font-size: 11.5px;
    }

    .topbar-right {
        gap: 10px;
    }

    .brand-text h1 {
        font-size: 16px;
    }

    .brand-text p {
        font-size: 9.5px;
    }

    .brand .logo {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .hero {
        min-height: auto;
    }

        .hero .container {
            padding-top: 36px;
            padding-bottom: 36px;
            gap: 24px;
        }
    .hero-copy h2 {
        font-size: 30px;
        padding: 0;
    }
    .hero-copy p {
        font-size: 14px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    section.hero::before {
        background: #0000007d;
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

        .hero-actions .btn {
            justify-content: center;
        }

    .services {
        padding: 44px 0;
    }

    .services-head h3 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }

    .service-card {
        padding: 18px 10px;
    }

    .feature-strip .container {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }

    .feature-item {
        font-size: 11.5px;
    }

        .feature-item .ic {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }

    .about {
        padding: 44px 0;
    }

        .about .container {
            grid-template-columns: 1fr;
            grid-template-areas: "img" "copy" "stats";
        }

    .about-img {
        min-height: 220px;
    }

    .stats .stat {
        flex: 1 1 100%;
    }

    .tagline-script {
        display: none;
    }
    .nav-wrap {
        padding: 10px 15px;
    }
    .service-card h4 {
        min-height: auto;
    }
    .about-copy h3 {
        font-size: 25px;
        line-height: 30px;
    }
}

