/* Owner Operators Page Styles */

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #e6f0ff;
    --accent-color: #00c853;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a68;
    --text-light: #6b6b8a;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0d1f3c 100%);
}

body {
    font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    padding-top: 65px;
    column-gap: 20px;
}


.hero-container {
    max-width: 1330px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    flex: 1 1 50%;
    max-width: 799px;
    padding-top: 60px;
    padding-bottom: 60px;
    /* padding-left: 60px; */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #a6a6a626;
    /* padding-left: 20px; */
    line-height: 24px;
}

/* Hero Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    list-style: none;
    position: relative;
}

.feature-item img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
}

/* CTA Button */
.hero-cta {
    background-color: #ffd700;
    color: #000;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.hero-cta:hover {
    background-color: #f1c40f;
}

.hero_image {
    flex: 1 1 50%;
    text-align: center;
}
.hero_image img {
    width: 100%;
    border-radius: 15px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 16px 60px;
        min-height: auto;
    }
    .hero-content {
        padding-top: 20px;
    }
    .hero-container {
        flex-direction: column;
    }
    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .feature-item {
        padding: 10px 16px;
    }

    .feature-item span {
        font-size: 0.85rem;
    }

    .hero-cta {
        width: 100%;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}


.section-title {
    text-align: center;
    margin-bottom: 13px;
    font-size: 40px;
    font-weight: 500;
    color: #1e3a5f;
}
.section-description {
    text-align: center;
    font-size: 18px;
    color: #1e3a5fb3;
    font-weight: 400;
    max-width: 762px;
    margin: 0 auto;
    line-height: 24px;
}


/* ========================================
   Factoring and Financing Section
======================================== */
.section-factoring-financing {
    /* margin: 0 1.75rem; */
    padding-bottom: 50px;
    background-color: #f8fafc;
    padding-top: 60px;
}
.section-factoring-financing .section-description {
    max-width: 1250px;
    margin-bottom: 50px;
}
.row.g-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    margin: 0 1.75rem;
}
/* .row.g-4>[class*=col-] {
    display: flex;
    flex-direction: column;
} */
.feature-card {
    height: 100%;
    /* border: 1px solid #39b7d721; */
    border-radius: 10px;
    background: #ffffff;
    transition: transform .3s, box-shadow .3s;
    /* background: linear-gradient(to bottom, #dcf4f7 0, rgba(220, 244, 247, .4) 100%); */
    padding: 10px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .562);
    border-radius: 12px;
    display: flex;
    font-size: 2rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* box-shadow: 0 4px 15px rgba(57, 183, 215, .3); */
    margin-bottom: 1rem;
}
.feature-icon i {
    font-size: 1.5rem;
    color: #3182CE;
}
.card-title {
    color: #1e3a5f;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
}
.card-text {
    font-size: 0.95rem;
    color: #1e3a5fc2;
    line-height: 1.6;
    margin: 0;
}
.card-text:last-child {
    margin-bottom: 0;
    color: #6c757d;
}
@media (max-width: 576px) {
    .section-factoring-financing .section-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .feature-card {
        padding: 1rem;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-text {
        font-size: .9rem;
    }
}
@media (max-width: 768px) {
    .section-factoring-financing .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }
    .section-factoring-financing .section-description {
        width: auto;
        font-size: 0.95rem;
    }
    .row.g-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 1.75rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    .card-title {
        font-size: 1rem;
    }
    .card-text {
        font-size: .85rem;
    }
}
@media (max-width: 992px) {
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    .card-title {
        font-size: 1.3rem;
    }
}




/* ========================================
   Free ELD Section
======================================== */
.free-eld {
    padding: 30px 20px 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.free-eld .section-title {
    text-align: left;
}
.free-eld .section-description {
    text-align: left;
    margin-bottom: 20px;
}
.free-eld-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 10px;
}
.free-eld-img {
    flex: 1 1 45%;
    position: relative;
}
.free-eld-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
}   
.free-eld-content {
    flex: 1 1 55%;
}
.free-eld-text h2 {
    font-size: 40px;
    font-weight: 500;
    color: #1e3a5f;
}
.free-eld-text p {
    font-size: 18px;
    color: #1e3a5fb3;
    font-weight: 400;
}
.free-eld-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.free-eld-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    /* margin-bottom: 24px; */
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    /* background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 200, 83, 0.06);
    border: 1px solid rgba(0, 200, 83, 0.08); */
    position: relative;
    transition: all 0.3s ease;
}
.free-eld-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 17%;
    transform: translateY(-17%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.free-eld-item strong {
    font-weight: 600;
    color: #1e3a5f;
    /* display: block; */
    margin-bottom: 4px;
}
.btn-yellow {
    background-color: #ffce00;
    color: #1e3a5f;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
    top: 20px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.cta-button {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.btn-yellow:hover {
    background-color: #e5b800;
}
@media (max-width: 768px) {
    .free-eld {
        padding-top: 0;
        padding-bottom: 0;
    }
    .free-eld-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .free-eld .section-title {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 700;
    }
    .free-eld .section-description {
        text-align: center;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    .btn-yellow {
        margin: 0 auto;
        display: block;
        text-align: center;
        width: fit-content;
    }
}
@media (max-width: 480px) {
    .free-eld-item {
        padding: 8px 10px 8px 45px;
        font-size: 15px;
    }
    .free-eld-item:before {
        left: 10px;
        top: 12%;
    }
}




/* ========================================
   Fuel Saving Section
======================================== */
.fuel-saving {
    padding: 30px 20px 80px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.fuel-saving .section-title {
    text-align: left;
}
.fuel-saving .section-description {
    text-align: left;
    margin-bottom: 20px;
}   
.fuel-saving-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 25px auto 0;
    padding: 0 10px;
}
.fuel-saving-img {
    flex: 1 1 45%;
    position: relative;
}
.fuel-saving-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
}
.fuel-saving-content {
    flex: 1 1 55%;
}
.fuel-saving-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fuel-saving-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}
.fuel-saving-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 15%;
    transform: translateY(-18%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.fuel-saving-item strong {
    font-weight: 600;
    color: #1e3a5f;
    /* display: block; */
    margin-bottom: 4px;
}
.btn-yellow.cta-btn {
    position: relative;
    top: 20px;
}
@media (max-width: 768px) {
    .fuel-saving {
        padding-top: 0;
    }
}
@media (max-width: 480px) {
    .fuel-saving-item {
        padding: 8px 10px 8px 45px;
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .fuel-saving-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .fuel-saving .section-title {
        text-align: center;
        padding-top: 30px;
        font-size: 1.5rem;
        font-weight: 700;
    }
    .fuel-saving .section-description {
        text-align: center;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    .fuel-saving-item:before {
        left: 10px;
        top: 14%;
    }
    .fuel-saving-content {
        order: 2;
    }
    .fuel-saving-img {
        order: 1;
    }
}



/* ========================================
   cashflow trucking companies
======================================== */
.heading-edit {
    text-align: center;
    margin-bottom: 10px;
    font-size: 40px;
    color: #1e3a5f;
}
.cashflow-matters p {
    max-width: 1174px;
    padding-bottom: 28px;
}
.factoring-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 92px;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
    flex-wrap: wrap;
}
.factoring-details {
    flex: 1 1 50%;
    margin: auto;
    align-items: center;
    justify-content: center;
}
.factoring-item {
    display: grid;
    grid-template-columns: 40px auto;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}
.svg-styling {
    border: 1px solid #c8c3c33d;
    padding: 5px 10px;
    border-radius: 10px;
    max-width: 40px;
}
.factoring-item h3 {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 5px;
}
.factoring-item p {
    color: #1e3a5fb3;
    font-size: 15px;
    line-height: 1.4;
}
.factoring-cta {
    background: #ffd500;
    color: #1e3a5f;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    margin-left: 50px;
    font-size: 14px;
    border-radius: 20px;
    margin-top: 30px;
    cursor: pointer;
}
.factoring-image-box {
    flex: 1 1 40%;
    position: relative;
}
.fuel-photo {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .heading-edit {
        font-size: 1.5rem;
    }
    .cashflow-matters p {
        font-size: 0.95rem;
    }
    .factoring-wrapper {
        display: flex;
        flex-direction: column-reverse;
        padding: 10px;
        gap: 2rem;
    }
    .factoring-details {
        display: flex;
        flex-direction: column;
    }
    .factoring-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
        background: #f9f9f9;
        border-radius: 10px;
    }
    .factoring-item svg {
        width: 80px;
        height: 40px;
    }
    .factoring-item h3 {
        font-size: 1.1rem;
        margin: 0 0 0.5rem 0;
    }
    .factoring-item p {
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.4;
    }
    .factoring-cta {
        width: 100%;
        padding: 1rem;
        font-weight: 600;
        font-size: 1rem;
        color: #1e3a5f;
        border: none;
        border-radius: 30px;
        margin-top: 1.5rem;
        cursor: pointer;
        margin-left: 0;
        text-align: center;
    }
    .factoring-image-box {
        width: 100%;
        text-align: center;
    }
    .fuel-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
}



/* ========================================
   payout banner
======================================== */
.payout-banner {
    max-width: 1200px;
    margin: 60px auto;
    margin-top: 70px;
    padding: 42px 30px 70px;
    border-radius: 25px;
    background-image: url("/asset-home/home-img/image - 2025-07-17T164742.519.webp"), linear-gradient(to right, #203e66, #3076bb);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    text-align: center;
}
.payout-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-top: 20px;
}
.payout-content p {
    font-size: 1rem;
    color: #d3e0ed;
    margin-bottom: 30px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .payout-banner {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .payout-content h2 {
        font-size: 1.5rem;
    }
    .payout-content p {
        font-size: 0.95rem;
    }
}




/* ========================================
   Why Routiqo Section - Interactive Tabs
======================================== */
.section-why-routiqo {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
    position: relative;
    overflow: hidden;
}

.section-why-routiqo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.2), transparent);
}

.why-routiqo-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-routiqo-header .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
    line-height: 1.25;
}

.why-routiqo-header .section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #1e3a5fb3;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.why-routiqo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

/* Tabs Navigation */
.routiqo-tabs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.routiqo-tabs h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    line-height: 1.3;
}
.routiqo-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 22px;
    background: var(--white);
    border: 1px solid #e8eef5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.routiqo-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.routiqo-tab:hover {
    border-color: rgba(0, 102, 204, 0.3);
    background: #f8fbff;
    transform: translateX(4px);
}

.routiqo-tab.active {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.routiqo-tab.active::before {
    transform: scaleY(1);
}

.routiqo-tab i {
    font-size: 1.4rem;
    color: var(--primary-color);
    width: 28px;
    flex-shrink: 0;
}

.routiqo-tab span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.routiqo-tab.active span {
    color: var(--primary-dark);
}

/* Content Area */
.routiqo-content-area {
    position: relative;
    min-height: 380px;
}

.routiqo-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.routiqo-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.panel-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 
        0 4px 30px rgba(0, 102, 204, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.08);
    position: relative;
    overflow: hidden;
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.panel-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(0, 200, 83, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.panel-icon {
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
}

.panel-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .3s;
}

.panel-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.3;
}

.panel-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    /* max-width: 550px; */
}

/* Mobile Accordion - Hidden on Desktop */
.mobile-accordion {
    display: none;
}

/* Desktop Tabs - Visible on Desktop */
.desktop-tabs {
    display: grid;
}

/* ========================================
   Accordion Styles (Mobile)
   ======================================== */
.routiqo-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e8eef5;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 102, 204, 0.3);
}

.accordion-item.active {
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
}

.accordion-header > i:first-child {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 24px;
    flex-shrink: 0;
}

.accordion-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    line-height: 1.3;
}

.accordion-arrow {
    font-size: 1.4rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-card {
    padding: 0 20px 20px;
}

.accordion-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 16px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-img img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 13px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.accordion-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Responsive for Why Routiqo */
@media (max-width: 992px) {
    .why-routiqo-wrapper.desktop-tabs {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .routiqo-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .routiqo-tab {
        flex: 1 1 calc(50% - 5px);
        min-width: 200px;
    }

    .routiqo-tab::before {
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        height: 3px;
        transform: scaleX(0);
        border-radius: 3px 3px 0 0;
    }

    .routiqo-tab.active::before {
        transform: scaleX(1);
    }

    .routiqo-tab:hover {
        transform: translateY(-2px);
    }

    .routiqo-content-area {
        min-height: auto;
    }

    .panel-card {
        padding: 35px;
    }
}

/* Switch to Accordion on Mobile */
@media (max-width: 768px) {
    .desktop-tabs {
        display: none !important;
    }

    .mobile-accordion {
        display: flex !important;
    }

    .section-why-routiqo {
        padding: 60px 16px;
    }

    .why-routiqo-header {
        margin-bottom: 40px;
    }

    .why-routiqo-header .section-title {
        font-size: 1.5rem;
    }

    .why-routiqo-header .section-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 16px;
        gap: 12px;
    }

    .accordion-header > i:first-child {
        font-size: 1.1rem;
    }

    .accordion-header span {
        font-size: 0.9rem;
    }

    .accordion-card {
        padding: 0 16px 16px;
    }

    .accordion-card p {
        font-size: 0.9rem;
    }
}




/* ========================================
   trucking companies
======================================== */
.trucking_companies {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.trucking_companies .section-title {
    text-align: center;
}
.trucking_companies .section-description {
    text-align: center;
    margin-bottom: 20px;
}
.trucking_companies_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 58px;
}
.trucking_companies-img {
    flex: 1 1 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trucking_companies-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
}   
.trucking_companies-content {
    flex: 1 1 55%;
}
.trucking_companies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.trucking_companies-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    /* margin-bottom: 24px; */
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}   
.trucking_companies-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 19%;
    transform: translateY(-19%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.trucking_companies-item strong {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.btn-yellow.cta-btn {
    position: relative;
    top: 20px;
}
@media (max-width: 768px) {
    .trucking_companies .section-title {
        text-align: center;
        padding-top: 20px;
        font-size: 1.5rem;
        font-weight: 700;
    }
    .trucking_companies .section-description {
        font-size: 0.95rem;
    }
    .trucking_companies-item {
        font-size: 15px;
    }
    .trucking_companies-item:before {
        top: 12%;
    }
    .trucking_companies {
        padding-top: 0;
    }       
    .trucking_companies_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .trucking_companies-img {
        width: 100%;
    }
    .trucking_companies-content {
        width: 100%;
    }
}



/* ========================================
   tech support
======================================== */
.tech_support {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.tech_support .section-title {
    text-align: center;
}
.tech_support .section-description {
    text-align: center;
    margin-bottom: 20px;
}   
.tech_support_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 58px;
}
.tech_support-img {
    flex: 1 1 45%;
    position: relative;
}
.tech_support-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
}
.tech_support-content {
    flex: 1 1 55%;
}
.tech_support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tech_support-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}
.tech_support-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 18%;
    transform: translateY(-18%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.tech_support-item strong {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.btn-yellow.cta-btn {
    position: relative;
    top: 20px;
}
@media (max-width: 768px) {
    .tech_support .section-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .tech_support .section-description {
        font-size: 0.95rem;
    }
    .tech_support-item {
        font-size: 15px;
    }
    .tech_support-item:before {
        top: 12%;
    }
    .tech_support_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .tech_support-img {
        width: 100%;
        order: 1;
    }
    .tech_support-content {
        width: 100%;
        order: 2;
    }
}




/* ========================================
   compare factoring and owner-operator loans section
======================================== */
.competitor_sec {
    padding: 3rem 0;
}
.text-2 {
    color: #4a5568 !important;
    font-weight: 700;
    font-size: 2.5rm;
}
.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 29px;
}
.comparison-table {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}
.feature-row {
    border-bottom: 1px solid #e9ecef;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.competitor_sec .feature-title {
    text-align: center;
    vertical-align: sub;
    align-items: center;
    justify-content: center;
    padding-top: 19px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a5568;
}
.matrack-column {
    background: #fff;
    padding: .8rem;
}
.competitor-column {
    padding: .8rem;
}
.header-text {
    color: #495057;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
}
.align-items-start {
    display: flex;
    align-items: start;
    justify-content: start;
}
.check-icon {
    color: #28a745;
}
.x-icon {
    color: #dc3545;
}
.check-icon, .x-icon {
    font-size: 1.2rem;
    margin-right: .5rem;
}
.feature-text {
    color: #6c757d;
    font-size: .95rem;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 767.98px) {
    .competitor_sec {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .feature-title {
        margin-bottom: .75rem;
    }
    .feature-text {
        order: 2;
    }
}
@media (max-width: 768px) {
    .competitor_sec h2 {
        margin-bottom: 1rem !important;
        margin-top: 3rem;
        font-size: 1.5rem;
        font-weight: 700;
    }
    .section-description {
        font-size: 0.95rem;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .comparison-table {
        min-width: 900px;
        margin: 1rem;
    } 
    .competitor-column, .matrack-column {
        padding: 1rem;
    }
    .header-text {
        margin-top: 9px !important;
    }
    .feature-text {
        font-size: .9rem;
    }
}



/* ========================================
   trust nationwide
======================================== */
.trust_nationwide {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.trust_nationwide .section-title {
    text-align: center;
}
.trust_nationwide .section-description {
    text-align: center;
    margin-bottom: 20px;
}       
.trust_nationwide_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 58px;
}
.trust_nationwide-img {
    flex: 1 1 45%;
    position: relative;
}
.trust_nationwide-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
}
.trust_nationwide-content {
    flex: 1 1 55%;
}
.trust_nationwide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.trust_nationwide-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}
.trust_nationwide-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 26%;
    transform: translateY(-26%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.trust_nationwide-item strong {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.btn-yellow.cta-btn {
    position: relative;
    top: 20px;
}
@media (max-width: 768px) {
    .trust_nationwide .section-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .trust_nationwide .section-description {
        font-size: 0.95rem;
    }
    .trust_nationwide-item {
        font-size: 15px;
    }
    .trust_nationwide-item:before {
        top: 16%;
    }
    .trust_nationwide_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .trust_nationwide-img {
        width: 100%;
    }
    .trust_nationwide-content {
        width: 100%;
    }
}


/* ========================================
   factoring vs. trucking company loans
======================================== */
.factoring-vs-trucking {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.factoring-vs-trucking .section-title {
    text-align: left;
}
.factoring-vs-trucking .section-description {
    text-align: left;
    margin-bottom: 20px;
}
.factoring-vs-trucking_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 58px;
}
.factoring-vs-trucking-img {
    flex: 1 1 45%;
    position: relative;
}
.factoring-vs-trucking-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.15);
}
.factoring-vs-trucking-content {
    flex: 1 1 55%;
}
.factoring-vs-trucking-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.factoring-vs-trucking-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}
.factoring-vs-trucking-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 21%;
    transform: translateY(-21%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700 0%, #f1c40f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
}
.factoring-vs-trucking-item strong {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.btn-yellow.cta-btn {
    position: relative;
    top: 20px;
}
@media (max-width: 768px) {
    .factoring-vs-trucking .section-title {
        text-align: left;
        font-size: 1.5rem;
        font-weight: 700;
    }
    .factoring-vs-trucking .section-description {
        text-align: left;
        font-size: 0.95rem;
    }
    .factoring-vs-trucking-item {
        font-size: 15px;
    }
    .factoring-vs-trucking-item:before {
        top: 12%;
    }
    .factoring-vs-trucking_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .factoring-vs-trucking-img {
        width: 100%;
        order: 1;
    }
    .factoring-vs-trucking-content {
        width: 100%;
        order: 2;
    }
}




/* ========================================
   How it works Section
======================================== */
.how-it-works-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.work-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.driver-image {
    width: 100%;
    object-fit: cover;
}
.hidden--image {
    display: none;
}
.content {
    padding-left: 2rem;
    margin: auto;
}
.how-it-works-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 400px;
    text-align: left;
}
.how-it-works-section .section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 500;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.step {
    position: relative;
    padding-left: -1.6rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.step::after {
    content: "";
    position: absolute;
    top: 36px;
    left: 24px;
    width: 2px;
    height: calc(137% - 36px);
    background: linear-gradient(to bottom, #3182ce 0%, #f8fafc 100%);
}
.step:last-child::after {
    display: none;
}
.step-number {
    position: relative;
    z-index: 2;
    background-color: #3182ce;
    width: 45px;
    height: 45px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #0077cc;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}
.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}
.step-content p {
    color: #1e3a5fb3;
    font-size: 0.95rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }
    .work-section {
        display: flex;
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    .image-container {
        text-align: center;
        display: none;
    }
    .left__side__image {
        display: none !important;
    }
    .driver-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .content {
        padding-left: 0;
        text-align: center;
    }
    .how-it-works-section .section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .how-it-works-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .hidden--image {
        display: block !important;
        margin-bottom: 2rem !important;
    }
    .steps {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        border-radius: 10px;
    }
    .step-number {
        font-size: 1.1rem;
    }
    .step-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    .step-content p {
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.4;
    }
}
@media (max-width: 1024px) {
    .steps {
        text-align: left;
    }
}


/* ========================================
   Payout Banner 2 Section
======================================== */
.payout-banner-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 60px auto;
    margin-top: 70px;
    padding-top: 35px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 25px;
    background-image: url("/asset-home/home-img/image - 2025-07-17T164742.519.webp"), linear-gradient(to right, #203e66, #3076bb);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}
.payout-content-1 {
    text-align: left;
}
.text-edit {
    margin-bottom: 20px;
    font-size: 31px;
}
.payout-content-1 p {
    margin-bottom: 40px;
}
.image-edit {
    width: 150px;
    padding-right: 20px;
}
.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .payout-banner-2 {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .image-content {
        display: flex;
    }
    .text-edit {
        font-size: 1.5rem;
    }
    .payout-content-1 p {
        font-size: 0.95rem;
    }
}




/* ========================================
   Fleet Support Section
======================================== */
.fleet_support {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.fleet_support .section-title {
    text-align: center;
}
.fleet_support .section-description {
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
}   
.fleet_support_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 58px;
}
.fleet_support-img {
    flex: 1 1 45%;
    position: relative;
}
.fleet_support-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}
.fleet_support-content {
    flex: 1 1 55%;
}
.fleet_support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fleet_support-item {
    font-size: 17px;
    font-weight: 400;
    color: #1e3a5fb3;
    padding: 8px 20px 8px 55px;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}   
.fleet_support-item:before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 18%;
    transform: translateY(-18%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(30, 58, 95);
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    background: linear-gradient(135deg, rgb(255, 215, 0) 0%, rgb(241, 196, 15) 100%);
    border-radius: 50%;
}   
.fleet_support-item strong {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}
.btn-yellow.cta-btn {
    position: relative;
    top: 20px;
}
@media (max-width: 768px) {
    .fleet_support_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .fleet_support-img {
        width: 100%;
        order: 1;
    }
    .fleet_support-content {
        width: 100%;
        order: 2;
    }
    .fleet_support .section-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .fleet_support .section-description {
        font-size: 0.95rem;
    }
    .fleet_support-item {
        font-size: 15px;
    }
    .fleet_support-item:before {
        top: 12%;
    }
}




/* ========================================
   Testimonials section
======================================== */
.reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-wrapper .section-description {
    margin-bottom: 26px;
}
.main-heading-1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
}
.feedback-layout {
    margin-bottom: 40px;
}
.review-box {
    background: #fff;
    padding: 30px;
    margin-right: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}
.rating-display {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.rating-icon {
    width: 20px;
    height: 20px;
    background-color: #ffc107;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.feedback-content {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}
.user-details {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #dee2e6;
    background-size: cover;
    background-position: center;
}
.user-data h4 {
    color: #1e3a5f;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}
.user-data p {
    color: #6c757d;
    font-size: 0.875rem;
}
.navigation-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}
.indicator-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.indicator-circle.current {
    background-color: #1e3a5f;
}

/* Avatar images */
.mike-avatar {
    background-image: url("/asset-home/home-img/image - 2025-07-18T114018.963.webp");
}
.sarah-avatar {
    background-image: url("/asset-home/home-img/review_img1.jpg");
}
.david-avatar {
    background-image: url("/asset-home/home-img/review_img2.jpg");
}
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .main-heading-1 {
        font-size: 1.5rem;
    }
    .reviews-wrapper .section-description {
        font-size: 0.95rem;
    }
}


/* ========================================
  FAQ section
======================================== */
/* page-wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.page-wrapper-container {
    background-color: #f3f7fb;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 50px;
}
.hero-heading-1 {
    text-align: center;
   font-size: 2.5rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 15px;
    margin-top: 30px;
}
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}
.support-panel {
    background: linear-gradient(90deg, #203e66 0%, #3076bb 100%);
    border-radius: 20px;
    padding: 40px 30px;
    color: #fff;
    text-align: center;
    position: sticky;
    top: 20px;
}
.agent-info {
    margin-bottom: 40px;
}
.avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto -7px;
    position: relative;
    overflow: hidden;
}
.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background-color: #10b981;
    border-radius: 50%;
    border: 2px solid #fff;
}
.agent-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: -3px;
    margin-top: 5px;
}
.agent-role {
    font-size: 0.9rem;
    opacity: 0.9;
}
.help-section h2 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}
.help-section p {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 30px;
}
.cta-button {
    background-color: #fbbf24;
    color: #1f2937;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.question-card {
    overflow: hidden;
    transition: all 0.3s ease;
}
.question-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.question-header {
    padding: 20px 25px;
    border-radius: 12px;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.question-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e3a5f;
}
.question-header:hover {
    background-color: #f8fafc;
    border-radius: 12px;
}
.dropdown-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: #6b7280;
}
.question-card.expanded .dropdown-icon {
    transform: rotate(180deg);
}
.answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #3182ce;
}
.question-card.expanded .answer-panel {
    max-height: 200px;
    border-radius: 12px;
    margin-top: 10px;
}
.answer-text {
    padding: 20px 25px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .question-card {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .answer-text {
        margin-top: 1rem;
    }
    .banner-zone {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .guide-item {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .application-box {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .hero-heading-1 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    .section-description {
        font-size: 0.95rem;
    }
    .support-panel {
        position: static;
        margin-right: 1rem;
        margin-left: 1rem;
    }
}



/* ========================================
   Knowledge Hub section
======================================== */
.knowledge-hub {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.banner-zone {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    margin-top: 100px;
}
.main-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}
.description-block {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #1e3a5fb3;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.resource-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: stretch;
}
.guide-item {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.guide-item:hover {
    transform: translateY(-4px);
}
.visual-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.hero-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.topic-label {
    position: absolute;
    top: 12px;
    left: 13px;
    background-color: #3182ce;
    color: #fff;
    padding: 4px 6px;
    border-radius: 30px;
    font-size: clamp(0.75rem, 1.5vw, -2.125rem);
    font-weight: 500;
}
.text-section {
    padding-top: clamp(1.25rem, 3vw, 1.5rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.timestamp {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: #1e3a5f;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}
.headline {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: #1e3a5f;
    line-height: 1.3;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}
.summary {
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    color: #64748b;
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
}
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e3a5f;
    font-weight: 500;
    font-size: clamp(0.9375rem, 1.8vw, 1rem);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}
.action-link:hover {
    color: #1e40af;
    gap: 12px;
}
.pointer {
    transition: transform 0.3s ease;
}
.action-link:hover .pointer {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .main-title {
        font-size: 1.5rem;
    }
    .description-block {
        font-size: 0.95rem;
    }
}



/* ========================================
   Contact Us section
======================================== */
.registration-section {
    background-color: #f3f7fb;
    padding-top: 70px;
    padding-bottom: 100px;
}
.registration-hub {
    max-width: 900px;
    margin: 0 auto;
}
.page-headline {
    text-align: center;
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    letter-spacing: -0.025em;
}
.application-box {
    background: #fff;
    border-radius: 20px;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}
form {
    display: flex;
    flex-direction: row;
    gap: 15px;
}
div.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10p;
}
.input-container {
    display: flex;
    flex-direction: column;
}
.field-title {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    font-weight: 500;
    color: #1e3a5f;
    margin-bottom: clamp(0.625rem, -1.75vw, -3.125rem);
}
.form-control {
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: #f8fafc;
    transition: all 0.3s ease;
    color: #374151;
    margin-bottom: 15px;
}
.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.form-control::placeholder {
    color: #9ca3af;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}
.section-title-1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.select-field {
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #9ca3af;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    margin-bottom: 15px;
}
.select-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.text-area {
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    color: #374151;
}
.text-area:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.text-area::placeholder {
    color: #9ca3af;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
}
.phone-group {
    display: flex;
    border-radius: 10px;
    background-color: #f8fafc;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.phone-group:focus-within {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fff;
}
.country-selector {
    padding: clamp(0.4rem, 1.75vw, 1.125rem);
    border: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    color: #374151;
    font-weight: 500;
    overflow: hidden;
}
.phone-field {
    flex: 1;
    padding: clamp(0.875rem, 1.75vw, 1.125rem);
    border: none;
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    background-color: inherit;
    transition: all 0.3s ease;
    color: #374151;
}
.phone-field:focus {
    outline: none;
}
.phone-field::placeholder {
    color: #9ca3af;
}
.agreement-area {
    margin: clamp(1.75rem, 3vw, 2.25rem) 0;
}
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.agreement-checkbox {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    cursor: pointer;
}
.agreement-label {
    font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
    color: #1e3a5f;
    line-height: 1.6;
    cursor: pointer;
}
.privacy-link {
    color: #3b82f6;
    text-decoration: underline;
    font-weight: 500;
}
.privacy-link:hover {
    color: #1d4ed8;
}
.primary-button {
    width: 100%;
    background-color: #fbbf24;
    color: #1f2937;
    border: none;
    padding: clamp(1rem, 2.25vw, 1.25rem) clamp(1.75rem, 3vw, 2.25rem);
    border-radius: 30px;
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
}
.primary-button:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}
.primary-button:active {
    transform: translateY(0);
}
@media (max-width: 768px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    .phone-group {
        flex-direction: row;
    }
    .registration-section {
        padding-top: 50px;
        padding-bottom: 80px;
    }
    .application-box {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .section__title__font {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    form {
        flex-direction: column;
    }
}