/* ==========================================================================
   1. ROOT VARIABLES & BASE STYLES
   ========================================================================== */
:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --text-dark: #111827;
    --text-light: #4b5563;
    --bg-light: #fef2f2;
    --white: #ffffff;
    --border: #fee2e2;
    --shadow-red: rgba(220, 38, 38, 0.2);
    --brand-blue: #007bff;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. ANIMATIONS & SCROLL EFFECTS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

@keyframes pulseWhite {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

/* ==========================================================================
   3. HEADER, NAVIGATION & DROPDOWNS
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav>li {
    position: relative;
    padding: 10px 0;
}

.main-nav>li>a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.main-nav>li>a:hover {
    color: var(--primary);
}

.main-nav>li>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.main-nav>li>a:hover::after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    z-index: 100;
    border-radius: 8px;
    border: 1px solid var(--border);
}

@media (min-width: 1101px) {
    .has-dropdown:hover .dropdown {
        display: flex;
    }
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    padding: 12px 24px;
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 30px;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn {
    background: var(--primary);
    color: var(--white);
    padding: 12px 26px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px var(--shadow-red);
}

.btn-large {
    padding: 20px 50px;
    font-size: 22px;
    animation: pulseBtn 2s infinite;
}

.btn-pulse {
    background-color: var(--white);
    color: var(--primary);
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulseWhite 2s infinite;
}

.btn-pulse:hover {
    transform: translateY(-3px);
    background-color: #f3f4f6;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* ==========================================================================
   5. MOBILE MENU (HAMBURGER)
   ========================================================================== */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        padding-top: 80px;
        z-index: 99;
    }

    .nav-menu.active {
        right: 0;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav>li {
        width: 100%;
        border-bottom: 1px solid var(--border);
        padding: 0;
    }

    .main-nav>li>a {
        display: block;
        padding: 18px 20px;
        width: 100%;
    }

    .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background: #f9fafb;
        width: 100%;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown.show-mobile {
        display: flex;
    }

    .dropdown a {
        padding: 14px 20px 14px 40px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-btn {
        display: block !important;
        margin: 20px;
        text-align: center;
        width: calc(100% - 40px);
    }

    .header-btn-desktop {
        display: none;
    }

    .hamburger.toggle .line1 {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .hamburger.toggle .line2 {
        opacity: 0;
    }

    .hamburger.toggle .line3 {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

/* ==========================================================================
   6. HOME PAGE: SLIDESHOW HERO
   ========================================================================== */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

#slide-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 5s linear;
    transform: scale(1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.4);
}

.slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    color: var(--white);
    padding: 20px;
}

.slide-content {
    width: 100%;
    max-width: 900px;
    margin: 0;
    padding: 0;
}

.slide-content h1 {
    font-size: clamp(50px, 7vw, 85px);
    font-weight: 800;
    margin: 0 0 24px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out forwards;
}

.slide-content h1 span {
    color: #ff4d4d;
}

.slide-content p {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    margin-bottom: 40px;
    /* Added bottom margin to fix gap */
}

/* ==========================================================================
   7. SHARED PAGE HEADERS (About Us & Services)
   ========================================================================== */
.page-header {
    background-color: var(--text-dark);
    padding: 160px 20px 80px 20px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    margin: 0 0 15px 0;
    color: var(--white);
}

.page-header p {
    color: #9ca3af;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0;
}

/* ==========================================================================
   8. COMPONENT: FEATURES / WHAT WE DO GRID
   ========================================================================== */
.features {
    background: var(--bg-light);
    padding: 80px 20px 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.grid-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
    border-color: var(--primary);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.card h3 {
    font-size: 22px;
    margin: 0 0 12px 0;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
}

.card p {
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================================================
   9. COMPONENT: TRUST / COUNTERS
   ========================================================================== */
.trust {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
}

.trust-title {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 0 0 50px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-item h4 {
    font-size: 64px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
    text-shadow: 2px 2px 0px var(--border);
}

.trust-item p {
    margin: 5px 0 0 0;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

/* ==========================================================================
   10. COMPONENT: HORIZONTAL SERVICE CARDS
   ========================================================================== */
.services {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 48px;
    margin: 0 0 60px 0;
    font-weight: 800;
}

.service-card {
    background: var(--white);
    border: 2px solid transparent;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px var(--shadow-red);
    transform: translateX(10px);
}

.service-info h4 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: var(--text-dark);
}

.service-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 20px;
    transition: transform 0.3s;
    display: inline-block;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

/* ==========================================================================
   11. COMPONENT: ARTICLES & NEWS
   ========================================================================== */
.articles-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.article-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.article-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.article-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0 0 20px 0;
}

.read-more-btn {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background-color: var(--primary-hover);
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* ==========================================================================
   12. PAGE SPECIFIC: ABOUT US 
   ========================================================================== */
.about-content {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-text-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-container p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-banner {
    background-color: var(--primary);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 40px 0;
    color: var(--white);
}

/* ==========================================================================
   13. PAGE SPECIFIC: SERVICES
   ========================================================================== */
.info-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.info-section.bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.info-container .intro-text {
    text-align: center;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 40px;
    font-size: 16px;
}

.two-col-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.two-col-list ul {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.two-col-list li,
.single-col-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.two-col-list li::before,
.single-col-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.single-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-note strong {
    color: var(--text-dark);
}

.footer-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.image-cta {
    position: relative;
    background-image: url('assets/home/slide2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.image-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.3;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   14. FINAL CTA, FOOTER & WATERMARK
   ========================================================================== */
.cta {
    padding: 120px 20px;
    text-align: center;
    background: var(--white);
}

.cta h2 {
    font-size: 48px;
    margin: 0 0 20px 0;
    font-weight: 800;
}

.cta p {
    font-size: 22px;
    color: var(--text-light);
    margin: 0 auto 50px;
    max-width: 700px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #111827;
    color: #9ca3af;
    font-size: 15px;
}

footer span {
    color: var(--primary);
    font-weight: bold;
}

.watermark {
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 19px;
    color: rgba(156, 163, 175, 0.6);
    font-weight: 600;
    z-index: 1000;
    transition: color 0.3s ease;
}

.watermark:hover {
    color: var(--brand-blue);
    cursor: default;
}

/* ==========================================================================
   15. EXACT TEAM UI & MODAL
   ========================================================================== */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
    /* Vertical gap 40px, Horizontal gap 60px */
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    cursor: pointer;
    width: 180px;
}

.team-member .img-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

/* Hover Overlay - Only shows Magnifying Glass on dark tint */
.team-member .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .hover-overlay {
    opacity: 1;
}

/* The actual magnifying glass icon */
.team-member .hover-overlay::after {
    content: '🔍';
    font-size: 30px;
    color: white;
}

.team-member h4 {
    margin: 0;
    color: var(--primary);
    /* Red Name */
    font-size: 14px;
    font-weight: 700;
}

/* --- EXACT MODAL STYLING --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark background behind modal */
    z-index: 2000;
    display: none;
    /* Hidden until clicked */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    border-radius: 4px;
    padding: 40px;
    display: flex;
    gap: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-left {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Keeps role aligned left */
    flex-shrink: 0;
}

.modal-left img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.modal-right {
    flex: 1;
    overflow-y: auto;
    max-height: 70vh;
}

.modal-right p {
    margin-bottom: 15px;
}

@media(max-width: 800px) {
    .modal-content {
        flex-direction: column;
        align-items: center;
    }

    .modal-left {
        width: 100%;
        align-items: center;
    }

    .modal-left p {
        text-align: center !important;
    }

    .modal-right h3 {
        text-align: center;
    }
}
/* Trust Strip */
.trust-strip-wrapper {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 25px 0;
    position: relative;
    z-index: 10;
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.g-score {
    font-size: 24px;
    font-weight: 800;
    color: #202124;
}
.stars {
    color: #fbbc05;
    font-size: 20px;
    letter-spacing: 2px;
}
.trust-label {
    font-size: 13px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.flags {
    font-size: 24px;
    display: flex;
    gap: 8px;
}
.flag {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.ca-cs-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a32a29;
    font-weight: 800;
    font-size: 20px;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background-color: #eaeaea;
}
@media (max-width: 768px) {
    .trust-strip-inner {
        gap: 20px;
        flex-direction: column;
    }
    .trust-divider {
        width: 80%;
        height: 1px;
    }
}
