/* Case Studies Custom CSS */

.cs-index-page {
    background: #fff;
}

.cs-index-hero {
    padding: 60px 0 48px;
    background: linear-gradient(160deg, #f0fff9 0%, #f5f8ff 60%, #fff 100%);
    border-bottom: 1px solid #eef2f7;
}

.cs-index-hero-inner {
    max-width: 780px;
    margin: 0 auto;
}

.cs-index-tag-pill {
    display: inline-block;
    background: linear-gradient(90deg, #00D075, #4484B3);
    color: #fff;
    font-family: Poppins;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.cs-index-headline {
    font-family: Poppins;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.15;
    color: #1b1b20;
    margin-bottom: 20px;
}

.cs-index-headline-accent {
    background: linear-gradient(90deg, #00D075, #4484B3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-index-subheadline {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    color: #1b1b20;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.cs-index-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 28px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.cs-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cs-stat-value {
    font-family: Poppins;
    font-weight: 700;
    font-size: 32px;
    color: #00D075;
    line-height: 1;
}

.cs-stat-label {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 500;
    color: #1b1b20;
    opacity: 0.6;
}

.cs-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e5e5;
}
.cs-filters-section {
    padding: 36px 0 0;
}

.cs-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cs-filter-pill {
    background: #f5f5f5;
    border: 1.5px solid #e5e5e5;
    border-radius: 100px;
    padding: 10px 22px;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    color: #1b1b20;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.cs-filter-pill:hover {
    background: #EFFFF8;
    border-color: #00D075;
    color: #00b365;
}

.cs-filter-pill.active {
    background: linear-gradient(90deg, #00D075, #4484B3);
    border-color: transparent;
    color: #fff;
    font-weight: 600;
}

/* =============================================
   INDEX PAGE — Card Grid
   ============================================= */
.cs-grid-section {
    padding: 40px 0 60px;
}

.cs-story-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #efefef;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cs-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Featured card — horizontal layout */
.cs-story-card-featured {
    flex-direction: row;
    border: none;
    box-shadow: 0 8px 40px rgba(0, 208, 117, 0.15), 0 2px 12px rgba(68, 132, 179, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Top gradient accent bar */
.cs-story-card-featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D075, #4484B3);
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.cs-story-card-featured .cs-story-card-img-wrap {
    width: 42%;
    flex-shrink: 0;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
}

.cs-story-card-featured .cs-story-card-img {
    height: 360px;
    object-fit: cover;
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.cs-story-card-featured:hover .cs-story-card-img {
    transform: scale(1.04);
}

.cs-story-card-featured .cs-story-card-body {
    padding: 40px 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-left: 1px solid rgba(0,208,117,0.15);
}

/* Regular card */
.cs-story-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.cs-story-card:not(.cs-story-card-featured) .cs-story-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cs-story-card:not(.cs-story-card-featured):hover .cs-story-card-img {
    transform: scale(1.05);
}

.cs-story-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,208,117,0.25) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cs-story-card-featured:hover .cs-story-card-overlay {
    opacity: 0.7;
}

.cs-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.cs-badge-agri {
    background: linear-gradient(90deg, #00D075, #00b365);
    box-shadow: 0 3px 12px rgba(0, 208, 117, 0.4);
}

.cs-card-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: Poppins;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: #00b365;
    box-shadow: 0 3px 12px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-card-featured-badge::before {
    content: "★";
    font-size: 9px;
    color: #FFB800;
}

.cs-story-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cs-story-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.cs-card-location,
.cs-card-read-time {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 500;
    color: #1b1b20;
    opacity: 0.55;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-story-card-title {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    color: #1b1b20;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.cs-story-card-featured .cs-story-card-title {
    font-size: 32px;
}

.cs-story-card-excerpt {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    color: #1b1b20;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.cs-story-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.cs-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cs-card-tag {
    background: #f0fef7;
    border: 1px solid #c0f0dc;
    color: #00a35e;
    font-family: Poppins;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cs-story-read-link {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #00D075, #4484B3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 12px 24px;
    border-radius: 50px;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 208, 117, 0.3);
}

.cs-story-read-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 208, 117, 0.45);
    gap: 12px;
}

/* Placeholder cards */
.cs-story-card-placeholder {
    border: 2px dashed #e0e0e0;
    box-shadow: none;
}

.cs-story-card-placeholder:hover {
    border-color: #00D075;
    box-shadow: 0 8px 30px rgba(0,208,117,0.08);
}

.cs-placeholder-img {
    height: 200px;
    background: linear-gradient(135deg, #f0fef7, #e8f4ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #b0c8c0;
}

.cs-placeholder-inner i {
    font-size: 2.5rem;
}

.cs-placeholder-inner span {
    font-family: Poppins;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cs-placeholder-title {
    color: #1b1b20 !important;
    opacity: 0.5;
}

/* =============================================
   INDEX PAGE — Responsive
   ============================================= */
@media (max-width: 991px) {
    .cs-index-headline { font-size: 40px; }
    .cs-index-subheadline { font-size: 16px; }
    .cs-stat-value { font-size: 26px; }
    .cs-index-stats-bar { gap: 30px; padding: 22px 28px; }

    .cs-story-card-featured {
        flex-direction: column;
    }
    .cs-story-card-featured .cs-story-card-img-wrap {
        width: 100%;
    }
    .cs-story-card-featured .cs-story-card-img {
        height: 260px;
    }
    .cs-story-card-featured .cs-story-card-body {
        padding: 28px 28px;
    }
    .cs-story-card-title { font-size: 20px; }
}

@media (max-width: 767px) {
    .cs-index-headline { font-size: 32px; }
    .cs-index-subheadline { font-size: 15px; }
    .cs-index-hero { padding: 40px 0 36px; }
    .cs-index-stats-bar { gap: 20px; padding: 18px 20px; }
    .cs-stat-value { font-size: 22px; }
    .cs-stat-divider { display: none; }
    .cs-story-card-featured .cs-story-card-img { height: 200px; }
    .cs-story-card-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
    .cs-index-headline { font-size: 26px; }
    .cs-index-tag-pill { font-size: 10px; padding: 5px 14px; }
    .cs-index-stats-bar { gap: 12px; flex-direction: column; padding: 16px; }
    .cs-stat-item { flex-direction: row; gap: 8px; align-items: baseline; }
    .cs-stat-value { font-size: 20px; }
    .cs-filters { justify-content: flex-start; }
    .cs-story-card-title { font-size: 18px; }
    .cs-story-card-excerpt { font-size: 14px; }
}


.cs-breadcrumb {
    margin-bottom: 34px;
    padding-left: 0;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1b1b20;
}

.cs-breadcrumb a,
.cs-breadcrumb span {
    font-weight: 400;
    color: #1b1b20;
    opacity: 0.6;
}

.cs-title {
    font-weight: 700;
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 35px;
    color: #1b1b20;
    margin-left: 0;
    padding-left: 0;
    font-family: Poppins;
}

.cs-intro {
    font-size: 18px;
    opacity: 0.6;
    color: #1b1b20;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 1320px;
    margin-left: 0;
    font-weight: 400;
}

.cs-meta {
    font-size: 18px;
    color: #1b1b20;
    font-weight: 600;
    margin-bottom: 54px;
    display: flex;
    gap: 20px;
}

.cs-meta .cs-meta-date,
.cs-meta .cs-meta-read-time {
    font-weight: 400;
}

.cs-hero-img-wrap {
    /* margin-bottom: 54px; */
    /* background: linear-gradient(90deg, #00D075 0%, #4484B3 100%); */
    padding: 1px;
    border-radius: 30px;
    /* box-shadow: 0 10px 80px rgba(0, 0, 0, 0.1); */
}

.cs-hero-img {
    width: 100%;
    border-radius: 29px;
    display: block;
}

.cs-tags-row {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cs-tag {
    background: #F9F9F9;
    border: 1px solid #E5E5E5;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.cs-content h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1b1b20;
    font-family: Poppins;
    font-size: 32px;
}

.cs-content p, .cs-content ul li {
    margin-bottom: 16px;
    color: #1b1b20;
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    opacity: 0.8;
}

.cs-challenge-section {
    margin-top: 44px;
}

.cs-quote-box {
    background-color: #EFFFF8;
    border-left: 4px solid #2586B7;
    padding: 34px;
    margin: 44px 0;
    border-radius: 16px;
}
.cs-quote-author-blue{
    background-color: #F0F8FF !important;
}
.cs-quote-text {
    font-family: Poppins;
    font-weight: 600;
    font-style: Italic;
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #1b1b20;
}

.cs-quote-author {
    font-size: 18px;
    color: #1B1B20;
    font-weight: 400;
    opacity: 0.8;
}

.cs-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.cs-feature-list li {
    font-weight: 600 !important;
}
.cs-feature-list li span{
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0%;
    color: #1B1B20;
    opacity: 0.8;
}

.cs-feature-list li strong {
    display: block;
    font-weight: 800;
    color: #1b1b20;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cs-metrics-grid {
    margin: 3rem 0;
}

.cs-metric-box {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: #fff;
    height: 100%;
}

.cs-metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d075;
    margin-bottom: 0.5rem;
}

.cs-metric-label {
    font-size: 0.95rem;
    color: #434343;
}

.cs-sidebar-card {
    background: #EFFFF8;
    border: none;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 2rem;
    box-shadow: none;
}

.cs-sidebar-card h5 {
    font-weight: 700;
    font-size: 18px;
    color: #1b1b20;
    text-transform: uppercase;
    letter-spacing: 0%;
    line-height: 70px;
}

.cs-business-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-business-info li {
    margin-bottom: 1.5rem;
}

.cs-business-info label {
    display: block;
    font-weight: 500;
    font-size: 18px;
    color: #1b1b20;
    margin-bottom: 12px;
    line-height: 100%;
    letter-spacing: 0%;
}

.cs-business-info span {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1b1b20;
    opacity: 0.8;
}

.cs-product-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-product-checklist li {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 14px 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #1B1B20;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.cs-product-checklist li .la-check {
    color: #00d075;
    margin-right: 15px;
    font-size: 1.2rem;
    font-weight: 900;
    background: #fff;
}
/* Products Mentioned section  */
.cs-products-mentioned h2 {
    margin-bottom: 60px !important;
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.cs-products-mentioned {
    background: #ffffff;
    margin-top: 52px;
}

.cs-product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0px 0px 10px 0px #0000001A;
}

.cs-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cs-product-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: #4484B30D;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.cs-product-card h4 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 33.6px;
    letter-spacing: 0%;
    text-align: center;
    color: #1B1B20;
}

.cs-product-card p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #1B1B20;
    opacity: 0.7;
    padding: 24px;
    min-height: 120px;
}

.cs-learn-more {
    color: #00D075;
    font-family: Poppins;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cs-learn-more:hover {
    color: #00b365;
}

.cs-cta-section {
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.cs-cta-banner {
    background: linear-gradient(246.41deg, #02CF77 -3.9%, #579AC5 104.89%);
    border-radius: 30px;
    padding: 60px 0;
    text-align: center;
    color: #fff;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 208, 117, 0.2);
}

.cs-cta-banner h2 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.cs-cta-banner p {
    font-family: Poppins;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 35px;
}

.cs-cta-btn {
    background: #fff;
    color: #00d075;
    padding: 25px 60px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cs-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: #00b365;
}

/* Decorative background elements */
/* .cs-cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 35c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm60-17c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM88 42c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zM12 60c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm54 25c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM10 22c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm52 58c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm28 20c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM80 38c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM20 70c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm60-60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
} */
@media (max-width: 1199px) {
    .cs-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .cs-breadcrumb {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cs-title {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .cs-intro {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cs-meta {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .cs-products-mentioned h2 {
        font-size: 2rem;
    }

    .cs-content h2 {
        font-size: 28px;
    }

    .cs-content p, .cs-content ul li {
        font-size: 17px;
    }

    .cs-quote-box {
        padding: 28px;
        margin: 30px 0;
    }

    .cs-quote-text {
        font-size: 20px;
    }

    .cs-feature-list li span, .cs-quote-author {
        font-size: 17px;
    }

    .cs-sidebar-card {
        padding: 20px;
    }

    .cs-sidebar-card h5 {
        font-size: 16px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .cs-products-mentioned h2 {
        font-size: 32px;
        margin-bottom: 40px !important;
    }

    .cs-product-card h4 {
        font-size: 20px;
    }

    .cs-product-card p {
        font-size: 14px;
        padding: 16px;
        min-height: auto;
    }

    .cs-learn-more {
        font-size: 16px;
    }

    .cs-cta-section {
        padding: 50px 0 0;
    }

    .cs-cta-banner {
        padding: 50px 24px;
        border-radius: 24px;
    }

    .cs-cta-banner h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .cs-cta-banner p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cs-cta-btn {
        padding: 18px 40px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .cs-breadcrumb {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cs-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cs-intro {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cs-meta {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .cs-meta span:not(:last-child)::after {
        content: none;
    }

    .cs-content h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
    }
    
    .cs-quote-box {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .cs-quote-text, .cs-quote-author {
        font-size: 1.25rem;
    }
    .cs-products-mentioned{
        margin-top: 0;
    }
    .cs-products-mentioned h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem !important;
    }
    
    .cs-cta-banner {
        padding: 3rem 1.5rem;
    }
    
    .cs-cta-banner h2 {
        font-size: 1.8rem;
    }
    
    .cs-cta-banner p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .cs-tag {
        padding: 6px 15px;
        font-size: 14px;
    }

    .cs-content h2 {
        font-size: 24px;
        margin-top: 1.5rem;
    }

    .cs-content p, .cs-content ul li {
        font-size: 16px;
    }

    .cs-quote-box {
        padding: 20px;
        margin: 25px 0;
        border-radius: 12px;
    }

    .cs-quote-text, .cs-quote-author {
        font-size: 18px;
    }

    .cs-feature-list li span {
        font-size: 16px;
    }

    .cs-business-info label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cs-business-info span {
        font-size: 16px;
    }

    .cs-product-checklist li {
        font-size: 16px;
        padding: 10px 16px;
    }

    .cs-products-mentioned h2 {
        font-size: 28px;
        margin-bottom: 30px !important;
    }

    .cs-product-card {
        padding: 24px 16px;
    }

    .cs-product-card h4 {
        font-size: 18px;
    }

    .cs-product-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
    }

    .cs-cta-section {
        padding: 40px 0 0;
    }

    .cs-cta-banner {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cs-cta-banner h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .cs-cta-banner p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .cs-cta-btn {
        padding: 15px 30px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .cs-breadcrumb {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cs-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .cs-intro {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .cs-meta {
        font-size: 14px;
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .cs-tag {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .cs-metric-value {
        font-size: 2rem;
    }

    .cs-content h2 {
        font-size: 22px;
    }

    .cs-content p, .cs-content ul li {
        font-size: 15px;
    }

    .cs-quote-box {
        padding: 16px;
        margin: 20px 0;
    }

    .cs-quote-text, .cs-quote-author {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .cs-sidebar-card {
        padding: 16px;
    }

    .cs-products-mentioned h2 {
        font-size: 24px;
        margin-bottom: 24px !important;
    }

    .cs-product-card h4 {
        font-size: 16px;
    }

    .cs-product-card p {
        font-size: 13px;
        padding: 12px;
        min-height: auto;
    }

    .cs-product-icon {
        width: 72px;
        height: 72px;
    }

    .cs-cta-banner {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .cs-cta-banner h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .cs-cta-banner p {
        font-size: 12px;
        line-height: normal;
        margin-bottom: 20px;
    }

    .cs-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}
@media (max-width: 380px) {
    .cs-meta {
        flex-direction: column;
    }
}
.cs-hero-section{
    background-image: url(../images/cs-bg-langing-page.png) !important;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 32px;
}