:root {
    --primary-blue: #0b4fa3;
    --secondary-blue: #155db8;
    --dark-blue: #0f3d7a;
    --green: #67b66b;
    --dark-text: #1e293b;
    --light-text: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 14px;
    --container: 1200px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark-text);
    background: var(--bg-light);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    background: rgba(11, 79, 163, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-branding img,
.default-logo {
    max-height: 58px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu li.current-menu-item a::after,
.nav-menu li a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
}

.header-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 8px;
    transition: 0.25s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.header-btn:hover,
.primary-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    min-height: 760px;
    background: url('../images/cape-town.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 79, 163, 0.72),
            rgba(21, 93, 184, 0.58),
            rgba(15, 61, 122, 0.74));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding-top: 90px;
}

.hero-kicker {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 800;
}

.hero-text {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 840px;
    margin: 0 auto 32px;
    opacity: 0.96;
}

.info-strip {
    margin-top: -38px;
    position: relative;
    z-index: 3;
}

.info-strip-inner {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.info-item {
    text-align: center;
    padding: 22px 18px;
    font-weight: 700;
    color: var(--primary-blue);
    border-right: 1px solid var(--border);
}

.info-item:last-child {
    border-right: 0;
}

.intro-section,
.services-section,
.industries-section,
.why-us-section,
.office-section {
    padding: 80px 0;
}

.intro-content {
    text-align: center;
    max-width: 920px;
}

.intro-content h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.intro-content p {
    font-size: 18px;
    color: var(--light-text);
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-heading h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    margin: 0 0 12px;
}

.section-heading p {
    color: var(--light-text);
    margin: 0;
    font-size: 17px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(11, 79, 163, 0.08);
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.service-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.service-card p {
    color: var(--light-text);
    margin: 0;
    font-size: 15px;
}

.industries-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px 22px;
    text-align: center;
    min-height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid #edf2f7;
}

.industry-card h3 {
    margin: 0;
    color: var(--dark-text);
    font-size: 20px;
    line-height: 1.35;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.why-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--dark-text);
    font-weight: 600;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: rgba(103, 182, 107, 0.15);
    color: var(--green);
    border-radius: 50%;
    font-size: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.why-us-image img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.office-content {
    text-align: center;
}

.office-box {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    padding: 38px 28px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.office-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(11, 79, 163, 0.08);
    color: var(--primary-blue);
    font-size: 32px;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.office-box h3 {
    font-size: 26px;
    margin: 0 0 12px;
}

.office-box p {
    color: var(--light-text);
    margin: 0;
    font-size: 17px;
}

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 14px;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: #cbd5e1;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    text-align: center;
}

.default-page {
    padding: 140px 0 80px;
}

.default-article {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.page-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 34px;
}

@media (max-width: 1100px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 79, 163, 0.98);
        padding: 18px 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        display: none;
    }

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

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .header-btn {
        margin-top: 10px;
    }

    .info-strip-inner {
        grid-template-columns: 1fr;
    }

    .info-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .info-item:last-child {
        border-bottom: 0;
    }

    .service-grid,
    .industry-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-section,
    .services-section,
    .industries-section,
    .why-us-section,
    .office-section {
        padding: 64px 0;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 14px 0;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-text {
        font-size: 17px;
    }

    .header-btn,
    .primary-btn {
        width: 100%;
        max-width: 280px;
    }

    .service-card,
    .industry-card,
    .office-box {
        padding: 24px 18px;
    }

    .intro-content h2,
    .section-heading h2 {
        font-size: 28px;
    }
}

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(11, 79, 163, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon i {
    font-size: 28px;
    color: #0b4fa3;
}

/* QUOTE PAGE */
.quote-page {
    background: #f8fafc;
}

.quote-hero {
    position: relative;
    min-height: 430px;
    background: url('../images/cape-town.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 90px;
}

.quote-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 79, 163, 0.72),
            rgba(21, 93, 184, 0.58),
            rgba(15, 61, 122, 0.74));
}

.quote-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.quote-hero-content h1 {
    margin: 0 0 14px;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.quote-hero-text {
    margin: 0 auto 20px;
    max-width: 700px;
    font-size: 19px;
    line-height: 1.7;
    color: #ffffff;
}

.quote-hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-hero-points li {
    position: relative;
    display: inline-block;
    margin: 6px 14px;
    padding-left: 26px;
    font-size: 16px;
    color: #ffffff;
}

.quote-hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #cdeccf;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

.quote-intro {
    padding: 52px 0 36px;
    text-align: center;
    background: #ffffff;
}

.quote-intro h2 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.2;
    color: #0f3d7a;
    font-weight: 800;
}

.quote-intro p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

.quote-form-section {
    padding: 26px 0 44px;
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 320px;
    gap: 22px;
    align-items: start;
}

.quote-form-card,
.quote-contact-card,
.quote-safe-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.quote-form-card {
    padding: 26px 24px 22px;
    border-radius: 4px;
}

.quote-form-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    color: #0f3d7a;
    font-weight: 800;
}

.quote-form-subtext {
    margin: 0 0 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 24px;
    align-items: start;
}

.quote-benefits ul,
.quote-safe-card ul,
.quote-safe-strip ul,
.quote-contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-benefits li,
.quote-safe-card li,
.quote-safe-strip li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 18px;
    color: #334155;
    font-size: 14px;
    line-height: 1.65;
}

.quote-benefits li::before,
.quote-safe-card li::before,
.quote-safe-strip li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    border: 1px solid #7ab68b;
    border-radius: 50%;
    color: #3d8b57;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
    font-weight: 700;
}

.quote-form .form-row {
    margin-bottom: 10px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    height: 42px;
    border: 1px solid #d8dee7;
    border-radius: 2px;
    background: #ffffff;
    padding: 0 12px;
    font-size: 14px;
    color: #334155;
    font-family: inherit;
    outline: none;
    box-shadow: none;
}

.quote-form textarea {
    height: 88px;
    resize: vertical;
    padding: 12px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #94a3b8;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #7ca7d9;
}

.quote-submit-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #4c9e79 0%, #67b66b 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.quote-submit-btn:hover {
    opacity: 0.96;
}

.quote-sidebar {
    display: grid;
    gap: 18px;
}

.quote-contact-card {
    padding: 20px 18px;
    border-radius: 3px;
    background: linear-gradient(180deg, #1450a8 0%, #0d3f87 100%);
    color: #ffffff;
}

.quote-contact-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.quote-contact-card h4 {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
}

.quote-contact-card ul li {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.quote-contact-card p {
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.7;
    color: #ffffff;
}

.quote-safe-card {
    padding: 20px 18px;
    border-radius: 3px;
}

.quote-safe-card h3 {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.5;
    color: #1f6b43;
    font-weight: 800;
}

.quote-safe-strip {
    padding: 24px 0 14px;
}

.quote-safe-strip .container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 26px 24px 12px;
}

.quote-safe-strip h3 {
    margin: 0 0 18px;
    text-align: center;
    color: #1f6b43;
    font-size: 28px;
    font-weight: 800;
}

.quote-safe-strip ul {
    max-width: 760px;
    margin: 0 auto;
}

.quote-bottom-strip {
    background: linear-gradient(90deg, #0d3f87 0%, #1450a8 100%);
    padding: 18px 0;
    text-align: center;
}

.quote-bottom-strip p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.quote-bottom-strip p span {
    display: inline-block;
    margin: 0 10px;
    opacity: 0.75;
}

@media (max-width: 1024px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .quote-sidebar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .quote-hero {
        min-height: 380px;
    }

    .quote-hero-content h1 {
        font-size: 38px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .quote-hero {
        min-height: 340px;
        padding-top: 70px;
    }

    .quote-hero-content h1 {
        font-size: 30px;
    }

    .quote-hero-text {
        font-size: 16px;
    }

    .quote-hero-points li {
        display: block;
        margin: 8px 0;
        text-align: left;
    }

    .quote-intro h2,
    .quote-safe-strip h3 {
        font-size: 26px;
    }

    .quote-form-card,
    .quote-contact-card,
    .quote-safe-card {
        padding: 20px 16px;
    }
}

/* ABOUT US PAGE */
.about-page {
    background: #f8fafc;
}

.about-hero {
    position: relative;
    min-height: 360px;
    background: url('../images/cape-town.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: 90px;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 34%,
        rgba(11, 79, 163, 0.10) 58%,
        rgba(11, 79, 163, 0.10) 100%
    );
}

.about-hero-inner {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 470px;
    color: #0f172a;
}

.about-hero-content h1 {
    margin: 0 0 12px;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #0f172a;
}

.about-hero-content p {
    margin: 0 0 24px;
    font-size: 20px;
    color: #334155;
}

.about-breadcrumb {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
}

.about-breadcrumb p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.about-breadcrumb a {
    color: #64748b;
}

.about-breadcrumb span {
    margin: 0 8px;
}

.about-who,
.about-company,
.about-what-we-do,
.about-why {
    padding: 72px 0;
}

.about-company,
.about-why {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.about-two-col {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin: 0 0 22px;
    font-size: 40px;
    line-height: 1.15;
    color: #0f172a;
    font-weight: 800;
}

.about-text p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.85;
    color: #475569;
}

.about-image-card img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: block;
}

.about-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.about-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(11, 79, 163, 0.08);
    color: #0b4fa3;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.about-info-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 700;
}

.about-info-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.about-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-service-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.7;
    color: #1e293b;
    font-weight: 500;
}

.about-service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #0b4fa3;
    font-size: 28px;
    line-height: 1;
}

.about-check-list li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    top: 4px;
    border-radius: 50%;
    background: rgba(103, 182, 107, 0.14);
    color: #4b9c5d;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

.about-cta-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.about-cta-card h3 {
    margin: 0;
    padding: 18px 24px;
    background: linear-gradient(90deg, #0d3f87 0%, #1450a8 100%);
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.about-cta-card ul {
    list-style: none;
    padding: 26px 24px 10px;
    margin: 0;
}

.about-cta-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    color: #334155;
    font-size: 16px;
    line-height: 1.75;
}

.about-cta-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(103, 182, 107, 0.14);
    color: #4b9c5d;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

.about-cta-card .primary-btn {
    margin: 0 24px 24px;
}

@media (max-width: 1100px) {
    .about-two-col {
        grid-template-columns: 1fr;
    }

    .about-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .about-hero {
        min-height: 320px;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-hero-content p {
        font-size: 18px;
    }

    .about-text h2,
    .about-info-card h3,
    .about-cta-card h3 {
        font-size: 30px;
    }

    .about-who,
    .about-company,
    .about-what-we-do,
    .about-why {
        padding: 56px 0;
    }
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 290px;
        padding-top: 72px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-content h1 {
        font-size: 30px;
    }

    .about-hero-content p,
    .about-text p,
    .about-info-card p,
    .about-service-list li,
    .about-cta-card ul li {
        font-size: 15px;
    }

    .about-text h2,
    .about-info-card h3,
    .about-cta-card h3 {
        font-size: 26px;
    }

    .about-info-card,
    .about-cta-card ul {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-cta-card h3 {
        padding: 16px 18px;
    }

    .about-cta-card .primary-btn {
        margin: 0 18px 18px;
    }
}