        .cspp-root {
    --primary: #046bd2;
    --primary-hover: #045cb4;
    --dark: #1e293b;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-light: #F0F5FA;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(4, 107, 210, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cspp-root {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Containers */
.cspp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cspp-section-padding {
    padding: 50px 0;
}

.cspp-bg-alt {
    background-color: var(--bg-light);
}

/* Headings & Text */
.cspp-root h1,
.cspp-root h2,
.cspp-root h3,
.cspp-root h4,
.cspp-root h5 {
    font-family: var(--font-head);
    color: var(--dark);
    font-weight: 700;
}

.cspp-section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}

.cspp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.cspp-section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 48px auto;
    font-size: 1.1rem;
}

/* Hero Section */
.cspp-hero-banner {
    background: linear-gradient(135deg, #091e3a 0%, #046bd2 50%, #045cb4 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cspp-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cspp-hero-banner h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cspp-breadcrumbs {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cspp-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.cspp-breadcrumbs a:hover {
    color: #ffd400;
}

.cspp-breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

/* Overview Section */
.cspp-overview-content-full {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.cspp-overview-content-full p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.7;
}

.cspp-badge {
    display: inline-block;
    background-color: rgba(4, 107, 210, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Key Features Container */
.cspp-features-box {
    background-color: #003c80;
    border-left: 10px solid #ffd400;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: var(--shadow-premium);
}

.cspp-features-box-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px 24px;
}

.cspp-feature-box-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cspp-feature-box-circle {
    width: 80px;
    height: 80px;
    background-color: #ffd400;
    color: #003c80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cspp-feature-box-item:hover .cspp-feature-box-circle {
    transform: scale(1.1);
}

.cspp-feature-box-item p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    max-width: 170px;
    font-weight: 500;
}

/* Responsive adjustments for Features Grid */
@media (max-width: 1200px) {
    .cspp-features-box-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .cspp-features-box {
        padding: 40px 20px;
        border-left-width: 6px;
    }
    .cspp-features-box-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 16px;
    }
    .cspp-feature-box-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .cspp-features-box-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Technical Specifications Table */
.cspp-specs-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 20px;
}

.cspp-specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.cspp-specs-table th {
    background-color: #002447;
    color: #ffffff;
    padding: 18px 24px;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
}

.cspp-specs-table th:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    width: 25%;
}

.cspp-specs-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: #334155;
    transition: var(--transition);
}

.cspp-specs-table tr:last-child td {
    border-bottom: none;
}

/* Row-by-row background styles */
.cspp-specs-table tr:nth-child(even):not(.cspp-row-highlight) {
    background-color: #f9fafb;
}

.cspp-specs-table tr:nth-child(odd):not(.cspp-row-highlight) {
    background-color: #ffffff;
}

/* First Row Highlight (Yellow) */
.cspp-specs-table tr.cspp-row-highlight td {
    background-color: #ffd400;
    color: #002447;
}

.cspp-specs-table tr.cspp-row-highlight td:first-child {
    color: #002447;
    font-weight: 700;
}

.cspp-specs-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    border-right: 1px solid var(--border);
    width: 25%;
}

/* Carousel / Slider Container */
.cspp-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 40px;
}

.cspp-carousel-view {
    width: 100%;
    overflow: hidden;
}

.cspp-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.cspp-carousel-slide {
    flex: 0 0 calc(33.333% - 13.33px);
    box-sizing: border-box;
}

/* Capsule Design */
.cspp-app-capsule {
    background-color: #ffffff;
    border: 3px solid #ffd400;
    border-radius: 40px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    height: auto;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cspp-app-capsule p {
    font-size: 0.88rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
    font-weight: 400;
}

.cspp-app-capsule:hover {
    box-shadow: var(--shadow-premium);
    transform: translateY(-4px);
}

.cspp-app-capsule-icon {
    color: #002447;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cspp-app-capsule:hover .cspp-app-capsule-icon {
    transform: scale(1.15);
}

.cspp-app-capsule h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: #002447;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

/* Arrows styling */
.cspp-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #002447;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
}

.cspp-carousel-arrow:hover {
    background-color: #ffd400;
    color: #002447;
}

.cspp-carousel-arrow.cspp-prev {
    left: -10px;
}

.cspp-carousel-arrow.cspp-next {
    right: -10px;
}

/* Dots indicator */
.cspp-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.cspp-carousel-dots .cspp-dot {
    width: 8px;
    height: 8px;
    background-color: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.cspp-carousel-dots .cspp-dot.cspp-active {
    background-color: #002447;
    transform: scale(1.2);
}

/* Responsive updates for carousel */
@media (max-width: 992px) {
    .cspp-carousel-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .cspp-carousel-slide {
        flex: 0 0 100%;
    }
    .cspp-carousel-container {
        padding: 0 20px;
    }
    .cspp-carousel-arrow.cspp-prev {
        left: -15px;
    }
    .cspp-carousel-arrow.cspp-next {
        right: -15px;
    }
}

/* Why Choose Us & What Sets Us Apart */
.cspp-sets-apart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 30px;
    margin-top: 30px;
}

.cspp-sets-apart-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 6px;
    padding: 24px;
    text-align: center;
    color: #334155;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.cspp-sets-apart-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(4, 107, 210, 0.1);
    border-color: rgba(4, 107, 210, 0.2);
}

/* Responsive updates for Why Choose Us */
@media (max-width: 768px) {
    .cspp-sets-apart-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cspp-sets-apart-card {
        padding: 20px 16px;
        font-size: 1rem;
    }
}

/* Accordion FAQs */
.cspp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cspp-faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cspp-faq-item.cspp-active {
    border-color: rgba(4, 107, 210, 0.3);
    box-shadow: var(--shadow-md);
}

.cspp-faq-question {
    width: 100%;
    padding: 22px 30px;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.cspp-faq-question:hover {
    background-color: var(--bg-light);
}

.cspp-faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.cspp-faq-item.cspp-active .cspp-faq-icon {
    transform: rotate(180deg);
}

.cspp-faq-answer-wrapper {
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cspp-faq-answer {
    padding: 0 30px 24px 30px;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cspp-hero-banner h1 {
        font-size: 2.25rem;
    }
    
    .cspp-section-padding {
        padding: 30px 0;
    }
    
    .cspp-section-title {
        font-size: 1.8rem;
    }
    
    .cspp-specs-table th, .cspp-specs-table td {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .cspp-specs-table td:first-child {
        width: 45%;
    }

    .cspp-specs-wrapper {
        overflow-x: auto;
    }
    
    .cspp-faq-question {
        padding: 16px 20px;
        font-size: 1.05rem;
    }
    
    .cspp-faq-answer {
        padding: 0 20px 16px 20px;
    }
}

@media (max-width: 480px) {
    .cspp-breadcrumbs {
        font-size: 0.85rem;
    }
}

/* Inline Styles Replacement Utilities */
.cspp-active-crumb {
    color: #ffd400;
    font-weight: 500;
}

.cspp-badge-center {
    display: block;
    width: fit-content;
    margin: 0 auto 20px auto;
}

.cspp-overview-title {
    font-size: 2.25rem;
    margin-bottom: 32px;
    line-height: 1.3;
    text-align: center;
}

.cspp-section-title-premium {
    font-family: var(--font-head);
    font-size: 2.25rem;
    font-weight: 800;
    color: #091e3a;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
}

.cspp-section-subtitle-compact {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: -32px auto 48px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cspp-overflow-hidden {
    overflow: hidden;
}

.cspp-why-choose-title {
    font-family: var(--font-head);
    font-size: 2.25rem;
    font-weight: 800;
    color: #002447;
    text-align: center;
    margin-bottom: 16px;
}

.cspp-why-choose-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 48px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cspp-sets-apart-title {
    font-family: var(--font-head);
    font-size: 2.25rem;
    font-weight: 800;
    color: #002447;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}


