/* ========== HERO BANNER IMAGE SECTION ========== */
.hero-sectionCyberSecurity {
    position: relative;
    width: 100%;
    min-height: 350px;
    background-image: url('/images/CyberSecurity.png?v=3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .hero-sectionCyberSecurity {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-sectionCyberSecurity {
        min-height: 220px;
    }
}

/* ========== PAGE RESET & TYPOGRAPHY ========== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ========== SECTION 1: HERO SECTION CSS ========== */
.svhro-capabilities-page {
    max-width: 1350px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.svhro-hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.svhro-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

    .svhro-hero-content h1 span {
        color: #0058be;
        background: linear-gradient(135deg, #0058be 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.svhro-hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 95%;
}

.svhro-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #041c45;
    color: #ffffff;
    font-weight: 600;
    padding: 0.9rem 2.25rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(4, 28, 69, 0.2);
}

    .svhro-hero-cta:hover {
        background-color: #0058be;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -3px rgba(0, 88, 190, 0.3);
    }

/* Contact Form inside Hero */
.svhro-contact-form-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

    .svhro-contact-form-container h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
        color: #0f172a;
    }

.svhro-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.svhro-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.svhro-form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}

.svhro-form-input,
.svhro-form-select,
.svhro-form-textarea {
    width: 100%;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
    color: #1e293b;
}

    .svhro-form-input:focus,
    .svhro-form-select:focus,
    .svhro-form-textarea:focus {
        background-color: #ffffff;
        border-color: #0058be;
        box-shadow: 0 0 0 3px rgba(0, 88, 190, 0.15);
    }

.svhro-form-textarea {
    resize: none;
    height: 4.5rem;
}

.svhro-submit-button {
    background-color: #000000;
    color: #ffffff;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .svhro-submit-button:hover {
        background-color: #1e293b;
    }

    .svhro-submit-button:active {
        transform: scale(0.98);
    }

@media (max-width: 1024px) {
    .svhro-hero-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .svhro-hero-content h1 {
        font-size: 2.25rem;
    }
}

/* ========== SECTION 2: WHY CYBER SECURITY CSS ========== */
.svwhy-section {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.svwhy-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.svwhy-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0058be;
    margin-bottom: 0.75rem;
}

.svwhy-overline-line {
    width: 32px;
    height: 2px;
    background-color: #0058be;
}

.svwhy-overline-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svwhy-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
}

.svwhy-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* ========== SECTION 3: CAPABILITIES CSS ========== */
.svexp-section {
    padding: 5rem 1.5rem;
    max-width: 1350px;
    margin: 0 auto;
}

.svexp-header {
    margin-bottom: 3.5rem;
}

.svexp-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0058be;
    margin-bottom: 0.75rem;
}

.svexp-overline-line {
    width: 32px;
    height: 2px;
    background-color: #0058be;
}

.svexp-overline-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svexp-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
}

.svexp-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    max-width: 1000px;
}

.svexp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svexp-card {
    position: relative;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.25rem 2rem;
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 320px;
    overflow: hidden;
    justify-content: flex-end;
}

.svexp-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transition: all 0.4s ease;
    z-index: 1;
}

.svexp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.5) 70%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
}

.svexp-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.svexp-card-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 88, 190, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.svexp-card:hover .svexp-card-icon {
    background-color: #0058be;
    color: #ffffff;
}

.svexp-card-icon .material-symbols-outlined {
    font-size: 24px;
}

.svexp-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
}

.svexp-card:hover h3 {
    color: #60a5fa;
}

.svexp-card p {
    font-size: 0.925rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.svexp-card:hover {
    transform: translateY(-8px);
    border-color: #0058be;
    box-shadow: 0 20px 25px -5px rgba(0, 88, 190, 0.25), 0 10px 10px -5px rgba(0, 88, 190, 0.1);
}

    .svexp-card:hover .svexp-card-bg {
        transform: scale(1.1);
        opacity: 0.45;
    }

@media (max-width: 1024px) {
    .svexp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .svexp-section {
        padding: 4rem 1.5rem;
    }

    .svexp-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SECTION 4: TECHNICAL EXCELLENCE (Dark Blue) ========== */
.svsnd-tech-section {
    padding: 5rem 1.5rem;
    background-color: #041C45;
    color: #ffffff;
}

.svsnd-tech-inner {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

.svsnd-tech-header {
    margin-bottom: 3.5rem;
    max-width: 900px;
}

.svsnd-tech-overline {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.svsnd-tech-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.svsnd-tech-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.svsnd-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.svsnd-tech-card {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.75rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

    .svsnd-tech-card:hover {
        transform: translateY(-8px);
        background-color: #1e293b;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
        border-color: #60a5fa;
    }

.svsnd-icon-container {
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 2.5rem;
    width: 2.5rem;
    transition: all 0.4s ease;
}

    .svsnd-icon-container .material-symbols-outlined {
        font-size: 32px;
    }

.svsnd-tech-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.svsnd-tech-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
}

.svsnd-tech-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cbd5e1;
}

.svsnd-tech-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.svsnd-tech-tag {
    padding: 4px 8px;
    background-color: rgba(96, 165, 250, 0.1);
    color: #93c5fd;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(96, 165, 250, 0.15);
}

@media (max-width: 1024px) {
    .svsnd-tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .svsnd-tech-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SECTION 5: WHY DO BUSINESSES TRUST US CSS ========== */
.svtrd-main-section {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

.svtrd-container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

.svtrd-content-header {
    margin-bottom: 3.5rem;
}

.svtrd-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0058be;
    margin-bottom: 0.75rem;
}

.svtrd-badge-line {
    width: 32px;
    height: 2px;
    background-color: #0058be;
}

.svtrd-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svtrd-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
}

.svtrd-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    max-width: 1100px;
}

.svtrd-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.svtrd-trust-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.75rem;
    border-radius: 0.75rem;
    transition: all 0.4s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

    .svtrd-trust-card:hover {
        box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.08);
        transform: translateY(-3px);
        border-color: #0058be;
    }

.svtrd-icon-container {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #0058be;
}

    .svtrd-icon-container .material-symbols-outlined {
        font-size: 24px;
    }

.svtrd-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .svtrd-card-content h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #0f172a;
        margin: 0;
        transition: color 0.3s;
    }

.svtrd-trust-card:hover .svtrd-card-content h3 {
    color: #0058be;
}

.svtrd-card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

@media (max-width: 1024px) {
    .svtrd-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========== SECTION 6: IMPLEMENTATION PROCESS CSS ========== */
.svprc-section {
    padding: 5rem 1.5rem;
    max-width: 1350px;
    margin: 0 auto;
    background-color: #ffffff;
}

.svprc-header {
    margin-bottom: 3.5rem;
}

.svprc-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0058be;
    margin-bottom: 0.75rem;
}

.svprc-overline-line {
    width: 32px;
    height: 2px;
    background-color: #0058be;
}

.svprc-overline-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svprc-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.svprc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svprc-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.4s ease;
    position: relative;
}

    .svprc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px -5px rgba(0, 88, 190, 0.08);
        border-color: #0058be;
    }

.svprc-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 88, 190, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.svprc-card:hover .svprc-step-number {
    color: rgba(0, 88, 190, 0.25);
    transform: scale(1.05);
}

.svprc-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
    transition: color 0.3s;
}

.svprc-card:hover h3 {
    color: #0058be;
}

.svprc-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

@media (max-width: 1024px) {
    .svprc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .svprc-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SECTION 7: BENEFITS (Dark Blue Grid) ========== */
.svben-section {
    padding: 5rem 1.5rem;
    background-color: #041C45;
    color: #ffffff;
}

.svben-inner {
    max-width: 1350px;
    margin: 0 auto;
}

.svben-header {
    margin-bottom: 3.5rem;
}

.svben-overline {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.svben-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: #ffffff;
}

.svben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.svben-card {
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .svben-card:hover {
        transform: translateY(-6px);
        background-color: #1e293b;
        box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.3);
    }

.svben-card-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(0, 88, 190, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #60a5fa;
    transition: all 0.3s;
}

.svben-card:hover .svben-card-icon {
    background-color: #0058be;
    color: #ffffff;
}

.svben-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.svben-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

@media (max-width: 1024px) {
    .svben-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .svben-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== SECTION 8: INDUSTRIES SERVED CSS ========== */
.svind-section {
    padding: 5rem 1.5rem;
    max-width: 1350px;
    margin: 0 auto;
}

.svind-header {
    margin-bottom: 3.5rem;
}

.svind-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0058be;
    margin-bottom: 0.75rem;
}

.svind-overline-line {
    width: 32px;
    height: 2px;
    background-color: #0058be;
}

.svind-overline-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.svind-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 1.25rem;
}

.svind-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
}

.svind-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .svind-tags-grid {
        grid-template-columns: 1fr;
    }
}

.svind-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 0.9rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.3s ease;
    cursor: default;
}

    .svind-tag:hover {
        border-color: #0058be;
        color: #0058be;
        box-shadow: 0 10px 15px -3px rgba(0, 88, 190, 0.1);
        transform: translateY(-3px);
    }

    .svind-tag .material-symbols-outlined {
        font-size: 22px;
        color: #0058be;
    }

/* ========== SECTION 9: FAQS (Accordion) ========== */
.svfaq-main-section {
    background-color: #f8fafc;
    padding: 5rem 1.5rem;
}

.svfaq-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.svfaq-faq-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}

.svfaq-faq-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.svfaq-faq-hero-subtitle {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.6;
}

.svfaq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.svfaq-accordion-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

    .svfaq-accordion-item:hover {
        box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
        border-color: #0058be;
    }

.svfaq-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

    .svfaq-accordion-trigger:focus {
        outline: none;
    }

.svfaq-accordion-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.svfaq-accordion-item:hover .svfaq-accordion-title {
    color: #0058be;
}

.svfaq-accordion-icon {
    color: #0058be;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.svfaq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.svfaq-accordion-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid transparent;
}

.svfaq-accordion-text {
    color: #475569;
    font-size: 0.975rem;
    line-height: 1.7;
}

.svfaq-accordion-item.active .svfaq-accordion-content {
    max-height: 500px;
}

.svfaq-accordion-item.active .svfaq-accordion-icon {
    transform: rotate(180deg);
}

/* ========== SECTION 10: FINAL CTA (Dark Blue) ========== */
.svcta-main-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.svcta-cta-banner-container {
    position: relative;
    background-color: #041C45;
    border-radius: 1.5rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    max-width: 1350px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(4, 28, 69, 0.25);
}

.svcta-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    z-index: 10;
}

.svcta-cta-heading {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.svcta-cta-description {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.svcta-cta-button-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0058be;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    box-shadow: 0 10px 15px -3px rgba(0, 88, 190, 0.2);
}

    .svcta-cta-button-inline:hover {
        background-color: #3b82f6;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px -3px rgba(0, 88, 190, 0.3);
    }

.svcta-cta-visual {
    position: relative;
    min-height: 350px;
}

.svcta-cta-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .svcta-cta-banner-container {
        grid-template-columns: 1fr;
    }

    .svcta-cta-content {
        padding: 3rem;
    }

    .svcta-cta-visual {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    .svcta-cta-content {
        padding: 2rem 1.5rem;
    }

    .svcta-cta-heading {
        font-size: 1.85rem;
    }
}
