/* ============================================================
   Cyber Security Page V2 — Isolated Stylesheet
   Template: temp-cyber-security-v2.php
   ============================================================ */

/* ---------- CSS Variables ---------- */
.cs2-page-wrap {
    --cs2-dark: #061827;
    --cs2-dark-mid: #071B2E;
    --cs2-blue: #064A7A;
    --cs2-blue-mid: #072A44;
    --cs2-cyan: #22C7E8;
    --cs2-cyan-dim: rgba(34, 199, 232, 0.75);
    --cs2-cyan-bg: rgba(34, 199, 232, 0.06);
    --cs2-cyan-border: rgba(34, 199, 232, 0.18);
    --cs2-cyan-glow: rgba(34, 199, 232, 0.09);
    --cs2-card-bg: rgba(6, 74, 122, 0.4);
    --cs2-card-border: rgba(255, 255, 255, 0.09);
    --cs2-light-bg: #F4F8FB;
    --cs2-border: #D7E5EF;
    --cs2-grey: #66788A;
    --cs2-grey-light: #96A1AC;
}

/* ============================================================
   SECTION 1 — HERO BANNER
   ============================================================ */
.cs2-banner-outer {
    position: relative;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.cs2-banner-outer .cs2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 12%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.cs2-banner-outer .container {
    position: relative;
    z-index: 2;
}

.cs2-banner-content {
    max-width: 680px;
    padding: 180px 0 50px;
}

.cs2-banner-content h1 {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 76px;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 40px;
}

.cs2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 13px 28px;
    border-radius: 50px;
    transition: background 0.3s, border-color 0.3s;
}

.cs2-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.cs2-btn img {
    width: 16px;
    filter: brightness(10);
}

/* Banner Stats (Glassmorphism) */
.cs2-banner-stats-wrap {
    margin-bottom: 40px;
}

.cs2-banner-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cs2-stat-item {
    text-align: center;
    color: #fff;
    padding: 0 20px;
    position: relative;
    flex: 1;
}

.cs2-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
}

.cs2-stat-item h4 {
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    font-size: 28px;
    margin: 0 0 6px;
    color: #fff;
}

.cs2-stat-item p {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Desktop 100vh Hero & Bottom Stats Alignment */
@media (min-width: 992px) {
    .cs2-banner-outer {
        min-height: 100vh;
        align-items: stretch;
    }

    .cs2-banner-outer .container {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .cs2-banner-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
        padding-bottom: 0;
    }

    .cs2-banner-stats-wrap {
        margin-top: auto;
        margin-bottom: 80px;
    }
}

/* ============================================================
   SECTION 2 — CYBERSECURITY DOMAINS
   ============================================================ */
.cs2-domains-outer {
    background: #F4F8FB;
    padding: 75px 0;
}

.cs2-domains-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.cs2-label {
    display: block;
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #064A7A;
    margin-bottom: 8px;
}

.cs2-domains-header h2 {
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -0.0123em;
    color: #071B2E;
    margin: 0;
}

.cs2-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border: 1px solid #D7E5EF;
    border-radius: 50px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #66788A;
    white-space: nowrap;
    align-self: flex-end;
}

/* Domain Selector */
.cs2-domain-selector {
    display: flex;
    gap: 6px;
    height: 360px;
}

/* Inactive strip */
.cs2-domain-strip {
    flex: 0 0 107px;
    background: #fff;
    border: 1px solid #D7E5EF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.cs2-domain-strip:hover {
    border-color: #064A7A;
}

.cs2-strip-num {
    font-family: 'Graphik', sans-serif;
    font-size: 10px;
    color: #C4D4E0;
    align-self: flex-start;
}

.cs2-strip-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.cs2-strip-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #064A7A;
    white-space: nowrap;
}

/* Active expanded card */
.cs2-domain-strip.cs2-active {
    flex: 1;
    background: #061827;
    border-color: transparent;
    align-items: flex-start;
    padding: 0;
    cursor: default;
}

.cs2-domain-strip.cs2-active .cs2-strip-num,
.cs2-domain-strip.cs2-active .cs2-strip-icon,
.cs2-domain-strip.cs2-active .cs2-strip-label {
    display: none;
}

.cs2-domain-strip.cs2-active::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 30%, rgba(34, 199, 232, 0.09) 0%, rgba(0, 0, 0, 0) 65%);
    z-index: 1;
    pointer-events: none;
}

/* Card inner (hidden by default, shown when active) */
.cs2-domain-card {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 32px;
    flex-direction: column;
    justify-content: space-between;
}

.cs2-domain-strip.cs2-active .cs2-domain-card {
    display: flex;
}

.cs2-domain-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cs2-card-num {
    font-family: 'Menlo', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #22C7E8;
}

.cs2-card-divider {
    width: 32px;
    height: 1px;
    background: rgba(34, 199, 232, 0.3);
}

.cs2-card-icon-wrap {
    display: flex;
}

.cs2-card-icon-wrap img {
    width: 13px;
    height: 13px;
}

.cs2-domain-card-mid {
    flex: 1;
}

.cs2-domain-card-mid h3 {
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 28.5px;
    letter-spacing: -0.0434em;
    color: #fff;
    margin: 0 0 12px;
}

.cs2-domain-card-mid p {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 21.45px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 340px;
    margin: 0 0 20px;
}

.cs2-domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.cs2-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    background: rgba(34, 199, 232, 0.06);
    border: 1px solid rgba(34, 199, 232, 0.18);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.0117em;
    color: rgba(34, 199, 232, 0.75);
}

.cs2-domain-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.cs2-domain-explore:hover {
    opacity: 0.75;
    color: rgba(255, 255, 255, 0.9);
}

.cs2-domain-explore img {
    width: 12px;
    filter: brightness(10);
}

/* ============================================================
   SECTION 3 — CYBERSECURITY SOLUTIONS NAVIGATOR
   ============================================================ */
.cs2-solutions-outer {
    position: relative;
    padding: 80px 0 100px;
    background-color: #061827;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cs2-solutions-header {
    margin-bottom: 56px;
}

.cs2-solutions-header .cs2-label {
    color: #22C7E8;
}

.cs2-solutions-header h2 {
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -0.0123em;
    color: #fff;
    margin: 0 0 12px;
}

.cs2-solutions-sub {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #66788A;
}

.cs2-solutions-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* Left tabs */
.cs2-sol-tabs {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cs2-sol-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.cs2-sol-tab.cs2-active {
    background: #072A44;
    border-color: rgba(34, 199, 232, 0.3);
}

.cs2-sol-tab.cs2-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 23px;
    background: #22C7E8;
    border-radius: 0 50px 50px 0;
}

.cs2-tab-num {
    font-family: 'Menlo', monospace;
    font-size: 10px;
    color: #66788A;
    min-width: 14px;
}

.cs2-sol-tab.cs2-active .cs2-tab-num {
    color: #22C7E8;
}

.cs2-tab-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.cs2-tab-title {
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 19.25px;
    color: #fff;
    flex: 1;
}

/* Right content */
.cs2-sol-content {
    flex: 1;
}

.cs2-sol-panel {
    display: none;
}

.cs2-sol-panel.cs2-active {
    display: block;
}

.cs2-sol-panel-title {
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 28.5px;
    color: #fff;
    margin: 0 0 24px;
}

/* 2x2 card grid */
.cs2-sol-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cs2-sol-card {
    background: rgba(6, 74, 122, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    padding: 20px;
    transition: border-color 0.3s;
}

.cs2-sol-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.cs2-sol-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cs2-sol-card-icon {
    margin-bottom: 20px;
    display: inline-flex;
    color: #22C7E8;
}

.cs2-sol-card-icon img {
    width: 15px;
    height: 15px;
}

.cs2-sol-card-arrow {
    width: 13px;
    height: 13px;
    opacity: 0.4;
}

.cs2-sol-card h4 {
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18.9px;
    letter-spacing: -0.0157em;
    color: #fff;
    margin: 0 0 6px;
}

.cs2-sol-card p {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 20.15px;
    color: #96A1AC;
    margin: 0;
}

/* ============================================================
   SECTION 4 — OEM PARTNERS
   ============================================================ */
.cs2-oem-outer {
    background: #F4F8FB;
    padding: 75px 0;
}

.cs2-oem-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.cs2-oem-header h2 {
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 38.4px;
    letter-spacing: -0.0123em;
    color: #071B2E;
    margin: 0;
}

.cs2-oem-desc {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #66788A;
    max-width: 260px;
    text-align: right;
}

/* Category Nav (Tabs) */
.cs2-oem-category-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cs2-oem-cat-btn {
    background: transparent;
    border: 1px solid #D6DFE7;
    border-radius: 20px;
    padding: 8px 16px;
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #071B2E;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs2-oem-cat-btn img,
.cs2-oem-cat-btn svg {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.cs2-oem-cat-btn.cs2-active,
.cs2-oem-cat-btn:hover {
    background: #071B2E;
    color: #fff;
    border-color: #071B2E;
}

.cs2-oem-cat-btn.cs2-active svg path,
.cs2-oem-cat-btn:hover svg path {
    stroke: #fff;
}

/* Panels */
.cs2-oem-panel {
    display: none;
}

.cs2-oem-panel.cs2-active {
    display: block;
    animation: cs2FadeIn 0.4s ease;
}

.cs2-oem-card {
    background: #fff;
    border: 1px solid #E8EEF4;
    border-radius: 16px;
    padding: 36px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.cs2-oem-logos {
    display: flex;
    align-items: center;
    width: 100%;
}

.cs2-oem-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.cs2-oem-logo img {
    max-height: 50px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.cs2-oem-logo img:hover {
    transform: scale(1.05);
}

.cs2-oem-divider {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #E8EEF4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .cs2-domain-selector {
        flex-wrap: wrap;
        height: auto;
    }

    .cs2-domain-strip {
        flex: 0 0 calc(50% - 3px);
        flex-direction: row;
        height: 70px;
        justify-content: flex-start;
        padding: 16px 20px;
        gap: 14px;
    }

    .cs2-domain-strip .cs2-strip-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .cs2-domain-strip.cs2-active {
        flex: 0 0 100%;
        height: auto;
        min-height: 300px;
    }

    .cs2-solutions-layout {
        flex-direction: column;
    }

    .cs2-sol-tabs {
        flex: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .cs2-banner-outer {
        min-height: 600px;
    }

    .cs2-banner-content {
        padding: 120px 0 60px;
    }

    .cs2-banner-content h1 {
        font-size: 38px;
        line-height: 50px;
    }

    .cs2-banner-stats {
        flex-wrap: wrap;
        gap: 24px 0;
    }

    .cs2-stat-item {
        flex: 0 0 50%;
    }

    .cs2-stat-item:nth-child(2)::after,
    .cs2-stat-item:last-child::after {
        display: none;
    }

    .cs2-domains-header,
    .cs2-oem-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cs2-oem-desc {
        text-align: left;
        max-width: 100%;
    }

    .cs2-sol-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .cs2-banner-content h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .cs2-stat-item {
        flex: 0 0 100%;
    }

    .cs2-stat-item::after {
        display: none !important;
    }

    .cs2-domain-strip {
        flex: 0 0 100%;
    }

    .cs2-oem-logos {
        gap: 30px;
        justify-content: center;
        flex-direction: column;
    }

    .cs2-oem-logo-wrap {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #E8EEF4;
    }

    .cs2-oem-logo-wrap:last-child {
        border-bottom: none;
    }

    .cs2-oem-divider {
        display: none;
    }

    .cs2-domains-header h2,
    .cs2-oem-header h2,
    .cs2-solutions-header h2 {
        font-size: 24px;
        line-height: 32px;
    }
}

/* ============================================================
   UPDATED STYLES FOR V2
   ============================================================ */

/* Domains Icon Wrappers */
.cs2-strip-icon-wrap {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    text-align: center;
}

.cs2-strip-icon {
    width: 37px;
    height: 37px;
    object-fit: contain;
    stroke: #064A7A;
    color: #064A7A;
}

.cs2-domain-strip.cs2-active .cs2-strip-icon-wrap {
    display: none;
}

.cs2-card-icon-wrap svg {
    stroke: #22C7E8;
}

/* Solutions Icon Wrappers */
.cs2-tab-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 12px;
}

.cs2-tab-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    stroke: #22C7E8;
    color: #22C7E8;
}

.cs2-sol-tab.cs2-active .cs2-tab-icon-wrap {
    background: transparent;
}

.cs2-sol-tab.cs2-active .cs2-tab-icon path {
    stroke: #fff;
    color: #fff;
}

/* ============================================================
   SECTION 6 — FAQ (UPDATED)
   ============================================================ */
.cs2-faq-outer {
    padding: 100px 0;
    background-color: #F4F8FB;
}

.cs2-faq-head h2 {
    font-family: 'Graphik', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.01em;
    color: #071B2E;
    margin-bottom: 20px;
}

.cs2-faq-head p {
    font-family: 'Graphik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #66788A;
}

.cs2-faq-main {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 10px 40px rgba(7, 27, 46, 0.05);
}

.cs2-faq-main .accordion-item {
    border: none;
    border-bottom: 1px solid #E8EEF4;
    background: transparent;
    margin-bottom: 0;
}

.cs2-faq-main .accordion-item:last-child {
    border-bottom: none;
}

.cs2-faq-main .accordion-button {
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #071B2E;
    background: transparent;
    padding: 24px 0;
    box-shadow: none;
}

.cs2-faq-main .accordion-button:not(.collapsed) {
    color: #071B2E;
    box-shadow: none;
}

.cs2-faq-main .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2322C7E8' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

.cs2-faq-main .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%2322C7E8' class='bi bi-arrow-up-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 0 0 8a8 8 0 0 0 16 0zm-7.5 3.5a.5.5 0 0 1-1 0V5.707L5.354 7.854a.5.5 0 1 1-.708-.708l3-3a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708L8.5 5.707V11.5z'/%3E%3C/svg%3E");
    transform: none;
    width: 24px;
    height: 24px;
    background-size: 100%;
}

.cs2-faq-main .accordion-body {
    padding: 0 0 24px;
    font-family: 'Graphik', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #66788A;
}

/* ============================================================
   SECTION 7 — BOTTOM CTA
   ============================================================ */
.cs2-bottom-cta {
    position: relative;
    padding: 200px 0;
    background-color: #000000;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.cs2-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cs2-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 24, 39, 0.8) 0%, rgba(6, 24, 39, 0.95) 100%);
    z-index: 2;
}

.cs2-cta-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.cs2-cta-content h2 {
    font-family: 'Graphik', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;
}

.cs2-cta-content p {
    font-family: 'Graphik', sans-serif;
    font-size: 18px;
    color: #C4D4E0;
    margin-bottom: 40px;
}

.cs2-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #22C7E8;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #061827;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs2-btn:hover {
    background: #FFFFFF;
    color: #061827;
}


@media (max-width: 1199px) {
    .cs2-strip-icon-wrap {
        position: relative;
        top: auto;
        transform: none;
        width: auto;
        margin: 0;
    }
}