body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #334155;
}

/* --- LIGHT BLUE GRADIENT HERO --- */
.hero-section {
    background: linear-gradient(135deg, #f2f0ff 0%, #eaf7ff 100%);
    padding: 80px 0;
    color: #0f172a;
}

.hero-tag {
    background-color: #ffffff;
    color: #0284c7;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0c4a6e;
}

/* Responsive image styling for advanced UI */
.hero-image-wrapper {
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.12);
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #ffffff;
    background: #ffffff;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- CONTENT SECTION BELOW --- */
.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-label {
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.text-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e293b;
    font-weight: 600;
    border-left: 4px solid #0284c7;
    padding-left: 20px;
    margin-bottom: 28px;
}

.text-body-custom {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 28px;
}

.highlight-box {
    background-color: #f0f9ff;
    border: 1px dashed #0ea5e9;
    border-radius: 12px;
    padding: 24px;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #0369a1;
    font-weight: 500;
}
@media (max-width: 991.98px) {

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.4;
        margin-top: 15px;
    }

    .hero-image-wrapper {
        margin-top: 35px;
    }

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

    .text-lead {
        font-size: 1rem;
        padding-left: 16px;
    }

    .text-body-custom,
    .highlight-box {
        font-size: 0.92rem;
    }
}

/* Tablets */
@media (max-width: 767.98px) {

    .hero-section {
        padding: 50px 0;
        text-align: center;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.4;
        margin-top: 15px;
    }

    .hero-image-wrapper {
        margin-top: 30px;
        border-radius: 12px;
    }

    .content-section {
        padding: 45px 0;
    }

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .text-lead {
        font-size: 0.95rem;
        padding-left: 15px;
        margin-bottom: 22px;
    }

    .text-body-custom {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .highlight-box {
        padding: 20px;
        font-size: 0.9rem;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .hero-section {
        padding: 40px 0;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.45;
    }

    .hero-image-wrapper {
        margin-top: 25px;
        border-width: 3px;
        border-radius: 10px;
    }

    .content-section {
        padding: 35px 0;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .text-lead {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: 12px;
        border-left-width: 3px;
    }

    .text-body-custom {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .highlight-box {
        padding: 16px;
        font-size: 0.88rem;
        border-radius: 10px;
    }
}


.requirement-section {
    padding: 60px 0;
    background-color: #fdfeff; 
    border-top: 1px solid #c3ddff37;
    border-bottom: 1px solid #e2e8f0;
}

.requirement-heading {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0c4a6e;
    margin-bottom: 20px;
}

.answer-badge {
    background-color: #e0f2fe;
    color: #0369a1;
    font-weight: 700;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 24px;
}


.logic-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 15px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.1);
}

.logic-icon-wrapper {
    color: #0284c7;
    margin-bottom: 12px;
    background: #f0f9ff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.logic-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    display: block;
}

@media (max-width: 991.98px) {

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

    .requirement-heading {
        font-size: 1.45rem;
        text-align: center;
    }

    .answer-badge {
        display: inline-block;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .logic-card {
        padding: 18px 15px;
        margin-bottom: 20px;
    }

    .logic-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .logic-title {
        font-size: 0.88rem;
    }
}

/* Tablets & Mobile - 2 Cards Per Row */
@media (max-width: 767.98px) {

    .requirement-section {
        padding: 40px 0;
    }

    .requirement-heading {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 18px;
    }

    .answer-badge {
        font-size: 0.9rem;
        padding: 5px 16px;
        margin-bottom: 20px;
    }

    .logic-card {
        padding: 16px 12px;
        margin-bottom: 16px;
    }

    .logic-icon-wrapper {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .logic-title {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Two cards in one row */
    .requirement-section .col-lg-3,
    .requirement-section .col-md-3,
    .requirement-section .col-md-4,
    .requirement-section .col-sm-6,
    .requirement-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Small Phones */
@media (max-width: 575.98px) {

    .requirement-section {
        padding: 35px 0;
    }

    .requirement-heading {
        font-size: 1.15rem;
    }

    .answer-badge {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

    .logic-card {
        padding: 14px 10px;
        border-radius: 10px;
    }

    .logic-icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .logic-title {
        font-size: 0.8rem;
    }

    /* Keep two cards in one row */
    .requirement-section .col-lg-3,
    .requirement-section .col-md-3,
    .requirement-section .col-md-4,
    .requirement-section .col-sm-6,
    .requirement-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}





.challenges-modern-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #fffdfd 0%, #ffffff 100%);
}

.text-danger-custom {
    color: #e11d48 !important;
}

.modern-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.challenge-visual-box {
    position: relative;
    display: inline-block;
}

.alert-pulse-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #e11d48;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(225, 29, 72, 0.3);
}

.challenge-list-wrapper {
    border-left: 2px solid #e2e8f0;
    padding-left: 25px;
}

.challenge-list-item {
    position: relative;
    margin-bottom: 30px;
}

.challenge-list-item:last-child {
    margin-bottom: 0;
}

.item-indicator {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 3px solid #e11d48;
    border-radius: 50%;
}

.item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.item-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}



.solution-modern-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.solution-modern-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0c4a6e;
    line-height: 1.35;
}

.sol-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.sol-icon {
    background: #e0f2fe;
    color: #0284c7;
    font-weight: 700;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 0.85rem;
}

.sol-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

.solution-visual-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.sol-main-img {
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.15);
    border: 4px solid #ffffff;
}

.success-floating-ui {
    position: absolute;
    top: -20px;
    left: -20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.success-floating-ui small {
    display: block;
    color: #64748b;
    font-size: 0.75rem;
}

.success-floating-ui strong {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {

    .challenges-modern-section,
    .solution-modern-section {
        padding: 40px 0;
    }

    .modern-section-title,
    .solution-modern-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .challenge-visual-box,
    .solution-visual-wrapper {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }

    .challenge-list-wrapper {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }

    .challenge-list-item {
        padding-left: 25px;
        margin-bottom: 25px;
    }

    .item-indicator {
        left: 0;
    }

    .alert-pulse-badge {
        right: 10px;
        bottom: 10px;
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .success-floating-ui {
        top: -10px;
        left: 10px;
        padding: 10px 16px;
    }

    .sol-feature-card {
        padding: 18px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

    .challenges-modern-section,
    .solution-modern-section {
        padding: 35px 0;
    }

    .modern-section-title,
    .solution-modern-title {
        font-size: 1.25rem;
        line-height: 1.5;
        text-align: center;
    }

    .challenge-visual-box img,
    .sol-main-img {
        width: 100%;
        height: auto;
    }

    .challenge-list-wrapper {
        border-left: none;
        padding-left: 0;
    }

    .challenge-list-item {
        padding-left: 22px;
        margin-bottom: 20px;
    }

    .item-indicator {
        left: 0;
        top: 6px;
        width: 10px;
        height: 10px;
    }

    .item-title {
        font-size: 1rem;
    }

    .item-desc {
        font-size: 0.9rem;
    }

    .alert-pulse-badge {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }

    .sol-feature-card {
        padding: 16px;
        margin-bottom: 15px;
    }

    .sol-icon {
        min-width: 26px;
        width: 26px;
        height: 26px;
        margin-right: 12px;
        font-size: 0.8rem;
    }

    .sol-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .solution-visual-wrapper {
        margin-top: 30px;
        text-align: center;
    }

    .success-floating-ui {
        position: static;
        display: inline-block;
        margin-bottom: 15px;
        width: auto;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {

    .modern-section-title,
    .solution-modern-title {
        font-size: 1.1rem;
    }

    .item-title {
        font-size: 0.95rem;
    }

    .item-desc {
        font-size: 0.85rem;
    }

    .sol-feature-card {
        padding: 14px;
    }

    .sol-icon {
        min-width: 24px;
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 0.75rem;
    }

    .sol-text {
        font-size: 0.85rem;
    }

    .success-floating-ui {
        padding: 10px 14px;
    }

    .success-floating-ui small {
        font-size: 0.7rem;
    }

    .success-floating-ui strong {
        font-size: 0.85rem;
    }

    .alert-pulse-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}








.tech-grid-cards-section {
    padding: 30px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.tech-grid-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 26px;
    height: 100%; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px -3px rgba(14, 165, 233, 0.08);
    border-color: #bae6fd;
    background-color: #f0f9ff;
}

.tech-card-meta {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0284c7;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tech-card-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.tech-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {

    .tech-grid-cards-section {
        padding: 25px 0;
    }

    .tech-grid-card {
        padding: 22px;
        margin-bottom: 20px;
    }

    .tech-card-heading {
        font-size: 1rem;
    }

    .tech-card-text {
        font-size: 0.88rem;
    }

    .tech-grid-cards-section .col-lg-4,
    .tech-grid-cards-section .col-md-4,
    .tech-grid-cards-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile */
@media (max-width: 767.98px) {

    .tech-grid-cards-section {
        padding: 20px 0;
    }

    .tech-grid-card {
        padding: 18px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    .tech-card-meta {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .tech-card-heading {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .tech-card-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Two cards per row */
    .tech-grid-cards-section .col-lg-4,
    .tech-grid-cards-section .col-md-4,
    .tech-grid-cards-section .col-md-6,
    .tech-grid-cards-section .col-sm-6,
    .tech-grid-cards-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Small Mobile */
@media (max-width: 575.98px) {

    .tech-grid-cards-section {
        padding: 15px 0;
    }

    .tech-grid-card {
        padding: 15px;
    }

    .tech-card-meta {
        font-size: 0.6rem;
    }

    .tech-card-heading {
        font-size: 0.9rem;
    }

    .tech-card-text {
        font-size: 0.8rem;
    }

    /* Keep two cards per row */
    .tech-grid-cards-section .col-lg-4,
    .tech-grid-cards-section .col-md-4,
    .tech-grid-cards-section .col-md-6,
    .tech-grid-cards-section .col-sm-6,
    .tech-grid-cards-section .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}


/* --- SIDE BY SIDE IMAGE & POINTS STYLE --- */
.operation-split-media-section {
    padding: 50px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.split-main-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-top: 6px;
}

/* Image framing block */
.split-image-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.split-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* Right side listing elements styles */
.split-points-list {
    padding-left: 15px;
}

.split-point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.point-index {
    color: #0284c7;
    font-weight: 700;
    font-size: 0.95rem;
    background-color: #f0f9ff;
    min-width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    margin-top: 2px;
}

.point-paragraph {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Bottom summary asset block */
.split-footer-banner {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px;
}








/* --- RESULTS OBTAINED DASHBOARD STYLE --- */
.results-dashboard-section {
    padding: 90px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

/* Left Side Bold Metric Card */
.metric-highlight-card {
    background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 100%);
    border-radius: 16px;
    padding: 40px 30px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(12, 74, 110, 0.1);
}

.metric-giant-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1;
    margin: 15px 0 5px 0;
    letter-spacing: -2px;
}

.metric-headline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.metric-subtext {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Right Side Segmented Stream */
.results-data-pipeline {
    padding-left: 20px;
}

.result-segment-block {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.result-segment-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 6px;
}

.result-segment-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
    margin-bottom: 0;
}

/* Custom internal nested list typography */
.result-nested-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
}

.result-nested-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    position: relative;
    padding-left: 16px;
}

.result-nested-list li::before {
    content: "•";
    color: #0284c7;
    font-weight: bold;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 991px) {
    .results-data-pipeline {
        padding-left: 0;
        margin-top: 20px;
    }
}


/* --- WHY CUSTOM BATCH NUMBERING STYLE --- */
.why-custom-section {
    padding: 40px 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.why-custom-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-top: 6px;
}

/* Capability Matrix container with clear typography framework */
.capability-matrix {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.matrix-header-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.matrix-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
    gap: 16px;
}

.matrix-node {
    font-size:14px;
    font-weight: 600;
    color: #1e293b;
    padding: 14px 20px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.matrix-node::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #0284c7;
    border-radius: 50%;
    margin-right: 14px;
    display: inline-block;
}

.why-custom-callout {
    background: linear-gradient(90deg, #f0f9ff 0%, #ffffff 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 24px;
}


/* --- WHY MANUFACTURERS PREFER O2B TECHNOLOGIES STYLE --- */
.prefer-o2b-section {
    padding: 90px 0;
    background-color: #f8fafc; /* Color contrast block for page finale */
    border-top: 1px solid #e2e8f0;
}

.prefer-o2b-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0c4a6e;
    line-height: 1.35;
}

/* Requirements Box Styling */
.tailored-requirements-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
}

.tailored-box-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.tailored-points-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.tailored-points-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.tailored-points-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.tailored-points-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 9px;
}

.tailored-box-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0284c7;
    line-height: 1.5;
}



/* --- CONCLUSION CLOSING BANNER STYLE --- */
.conclusion-banner-section {
    padding: 30px 0; /* Additional bottom padding for clean separation */
    background-color: #f8fafc;
}

/* Deep navy/blue corporate hero gradient footer frame */
.conclusion-frame {
    background: linear-gradient(135deg, #0f172a 0%, #0369a1 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #ffffff;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15);
}

.conclusion-heading {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 18px;
}

.conclusion-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0f2fe;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-weight: 500;
}

@media (max-width: 767px) {
    .conclusion-frame {
        padding: 40px 20px;
    }
    .conclusion-text {
        font-size: 1rem;
    }
}