﻿/* 고객사 새 디자인 전용 스타일 (기존 마스터페이지 충돌 방지용) */
:root {
    --navy: #1A2F5A;
    --navy-dark: #111E3A;
    --navy-light: #243D72;
    --gold: #C5A028;
    --gold-light: #E2BA3A;
    --white: #FFFFFF;
    --bg: #F5F6F8;
    --text: #1E1E1E;
    --text-muted: #666;
    --border: #E0E0E0;
    --kakao: #FEE500;
    --kakao-text: #191919;
}

.new-layout {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

    .new-layout,
    .new-layout * {
        box-sizing: border-box;
    }

        .new-layout html {
            scroll-behavior: smooth;
        }

        .new-layout *,
        .new-layout *::before,
        .new-layout *::after {
            margin: 0;
            padding: 0;
        }

        /* ─── 상단 바 ─── */
        .new-layout .topbar {
            height: 50px;
            background: var(--navy-dark);
            padding: 10px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            overflow: hidden;
            opacity: 1;
            max-height: 50px;
            transform: translateY(0);
            transition: transform 0.25s ease, opacity 0.25s ease, max-height 0.25s ease, padding 0.25s ease;
            position: relative;
            z-index: 10001;
        }

            .new-layout .topbar a,
            .new-layout .topbar a:link,
            .new-layout .topbar a:visited {
                color: #FFFFFF !important;
                text-decoration: none;
                font-size: 13px;
                opacity: 0.8;
                transition: opacity 0.2s;
            }

                .new-layout .topbar a:hover {
                    color: #FFFFFF !important;
                    opacity: 1;
                }

            .new-layout .topbar.is-hidden {
                max-height: 0;
                padding-top: 0;
                padding-bottom: 0;
                opacity: 0;
                transform: translateY(-100%);
                pointer-events: none;
            }

        /* ─── 헤더 고정 ─── */
        .new-layout header.baner {
            position: fixed !important;
            top: 50px !important;
            left: 0;
            width: 100%;
            height: 72px;
            z-index: 10000 !important;
            background: var(--white);
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid var(--bg);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: top 0.25s ease;
        }

            .new-layout header.baner .logo {
                display: flex;
                align-items: center;
                text-decoration: none;
            }

        .new-layout #header-logo {
            height: 40px;
            width: auto;
            display: block;
        }

        .new-layout .header-cta {
            background: var(--kakao);
            color: var(--kakao-text);
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s;
        }

            .new-layout .header-cta:hover {
                opacity: 0.85;
            }

            .new-layout .header-cta svg {
                width: 18px;
                height: 18px;
            }

body.scrolled .new-layout header.baner {
    top: 0 !important;
}

/* 헤더 고정에 따른 상단 파고듬 방지 */
.new-layout .hero,
.new-layout .main {
    margin-top: 0 !important;
    padding-top: 122px !important;
}

body.scrolled .new-layout .hero,
body.scrolled .new-layout .main {
    padding-top: 72px !important;
}

/* ─── 히어로 영역 ─── */
.new-layout .hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .new-layout .hero::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(197,160,40,0.08);
        pointer-events: none;
    }

    .new-layout .hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(197,160,40,0.05);
        pointer-events: none;
    }

.new-layout .hero-badge {
    display: inline-block;
    background: rgba(197,160,40,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.new-layout .hero-brand {
    font-size: clamp(54px, 10vw, 96px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--gold-light);
    text-shadow: 0 0 40px rgba(245,200,66,0.35), 0 4px 24px rgba(0,0,0,0.4);
    position: relative;
}

    .new-layout .hero-brand .tax {
        color: #fff;
    }

    .new-layout .hero-brand .uturn {
        color: var(--gold-light);
    }

.new-layout .hero-brand-sub {
    font-size: clamp(13px, 1.6vw, 16px);
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.new-layout .hero h1 {
    font-size: clamp(20px, 3.2vw, 34px);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: rgba(255,255,255,0.92);
}

    .new-layout .hero h1 em {
        color: var(--gold-light);
        font-style: normal;
    }

.new-layout .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    font-weight: 400;
}

.new-layout .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-layout .hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px 24px;
    margin-bottom: 32px;
    gap: 20px;
}

.new-layout .hero-stat {
    text-align: center;
}

    .new-layout .hero-stat strong {
        display: block;
        font-size: 20px;
        font-weight: 900;
        color: var(--gold-light);
    }

    .new-layout .hero-stat span {
        font-size: 12px;
        color: rgba(255,255,255,0.6);
    }

.new-layout .hero-stat-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.2);
}

.new-layout .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.new-layout .btn-kakao {
    background: var(--kakao);
    color: var(--kakao-text);
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(254,229,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .new-layout .btn-kakao:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(254,229,0,0.4);
    }

/* ─── 특장점 섹션 ─── */
.new-layout .features {
    background: var(--navy);
    padding: 80px 40px;
    color: var(--white);
}

    .new-layout .features .section-title h2 {
        color: var(--white);
    }

    .new-layout .features .section-title p {
        color: rgba(255,255,255,0.6);
    }

.new-layout .features-grid {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.new-layout .feature-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 36px 28px;
    transition: background 0.2s;
}

    .new-layout .feature-card:hover {
        background: rgba(255,255,255,0.12);
    }

.new-layout .feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(197,160,40,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.new-layout .feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.new-layout .feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ─── 프로세스 ─── */
.new-layout .process {
    background: var(--bg);
    padding: 80px 40px;
}

    .new-layout .process .section-title h2 {
        color: var(--navy);
    }

.new-layout .process-steps {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    position: relative;
}

.new-layout .step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

    .new-layout .step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gold);
        font-size: 20px;
        font-weight: 900;
    }

.new-layout .step-num {
    width: 52px;
    height: 52px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    margin: 0 auto 16px;
}

.new-layout .step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.new-layout .step p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── 안심 메시지 ─── */
.new-layout .reassure {
    background: var(--white);
    padding: 60px 40px;
}

.new-layout .reassure-inner {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
    border-radius: 24px;
    padding: 52px 48px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .new-layout .reassure-inner::before {
        content: '✓';
        position: absolute;
        top: -20px;
        right: 30px;
        font-size: 160px;
        font-weight: 900;
        color: rgba(255,255,255,0.04);
        line-height: 1;
    }

    .new-layout .reassure-inner h2 {
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 900;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

        .new-layout .reassure-inner h2 em {
            color: var(--gold-light);
            font-style: normal;
        }

    .new-layout .reassure-inner p {
        font-size: 16px;
        color: rgba(255,255,255,0.75);
        line-height: 1.7;
    }

.new-layout .reassure-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197,160,40,0.15);
    border: 1px solid rgba(197,160,40,0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 24px;
}

/* ─── FAQ ─── */
.new-layout .faq,
.new-layout .cont5 {
    background: var(--bg) !important;
    padding: 80px 0 !important;
}

    .new-layout .faq-list,
    .new-layout .cont5 .inner > div ul {
        max-width: 760px !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        padding: 0 20px !important;
    }

        .new-layout .faq-item,
        .new-layout .cont5 .inner > div ul li {
            background: #FFFFFF !important;
            border-radius: 8px !important;
            border: 1px solid #E2E8F0 !important;
            overflow: hidden !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
            padding: 0 !important;
            margin-bottom: 0 !important;
        }

.new-layout .faq-q {
    padding: 22px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1A2F5A !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    gap: 16px;
}

    .new-layout .faq-q .badge {
        flex-shrink: 0;
        background: #1A2F5A !important;
        color: #fff !important;
        padding: 2px 8px !important;
        border-radius: 4px !important;
        font-size: 12px !important;
        margin-right: 6px !important;
    }

    .new-layout .faq-q .arrow {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        transition: transform 0.3s;
        color: var(--navy);
    }

.new-layout .faq-item.open .arrow {
    transform: rotate(180deg);
}

.new-layout .faq-a,
.new-layout .cont5 .inner > div ul li p:last-child {
    padding: 22px 24px !important;
    font-size: 14px !important;
    color: #4A5568 !important;
    line-height: 1.7 !important;
    background: #FAFAFA !important;
    border-top: 1px solid #E2E8F0 !important;
}

.new-layout .cont5 .inner > div h1 {
    text-align: center;
    font-size: var(--h2);
    font-weight: bold;
    margin-bottom: 47px !important;
}

.new-layout .cont5 .inner > div ul li p:first-child {
    font-size: var(--btn2) !important;
    font-weight: bold;
    margin-bottom: 10px !important;
}

/* ─── CTA 배너 ─── */
.new-layout .cta-banner {
    background: var(--gold) !important;
    padding: 60px 40px !important;
    text-align: center;
}

    .new-layout .cta-banner h2 {
        font-size: clamp(22px, 3vw, 32px);
        font-weight: 900;
        color: var(--navy-dark);
        margin-bottom: 10px !important;
        letter-spacing: -0.5px;
    }

    .new-layout .cta-banner p {
        font-size: 16px;
        color: rgba(26,47,90,0.7);
        margin-bottom: 32px !important;
    }

.new-layout .btn-dark,
.new-layout .btn-dark:link,
.new-layout .btn-dark:visited {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy-dark);
    color: #FFFFFF !important;
    padding: 18px 44px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(26,47,90,0.25);
    transition: transform 0.2s, opacity 0.2s;
}

    .new-layout .btn-dark:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        color: #FFFFFF !important;
    }

/* ─── 푸터 ─── */
.new-layout footer {
    background: var(--navy-dark) !important;
    padding: 45px 0 !important;
}

    .new-layout footer,
    .new-layout footer *,
    .new-layout footer a,
    .new-layout footer button {
        color: rgba(255, 255, 255, 0.6) !important;
    }

        .new-layout footer .footer-logo,
        .new-layout footer .footer-bottom span {
            color: #FFFFFF !important;
        }

.new-layout .footer-inner {
    max-width: 960px;
    margin: 0 auto;
    width: 80%;
}

.new-layout #footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 16px;
    display: block;
    filter: brightness(0) invert(1);
}

.new-layout .footer-tagline {
    font-size: 13px;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.4);
}

.new-layout .footer-addresses {
    display: flex !important;
    flex-direction: row !important;
    gap: 40px !important;
    margin-bottom: 32px !important;
    text-align: left !important;
}

.new-layout .footer-addr {
    flex: 1 !important;
}

.new-layout footer .footer-addr h4 {
    color: var(--gold) !important;
    font-size: 12px;
    margin-bottom: 6px;
}

.new-layout footer .left > ul > li:nth-child(2) {
    margin: 52px 0 37px 0 !important;
}

.new-layout footer .left > ul > li:nth-child(3) {
    margin-bottom: 37px !important;
}

.new-layout .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
}

.new-layout .footer-links {
    display: flex;
    gap: 16px;
}

    .new-layout .footer-links a:hover {
        color: var(--gold-light) !important;
        text-decoration: underline;
    }

/* ─── 플로팅 및 모바일 하단 ─── */
.new-layout .float-kakao {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--kakao);
    color: var(--kakao-text);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    font-size: 26px;
    z-index: 200;
    transition: transform 0.2s;
}

    .new-layout .float-kakao:hover {
        transform: scale(1.1);
    }

.new-layout .mobile-bottom-cta {
    display: none;
}

/* ─── 모달 ─── */
.new-layout .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10,20,50,0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .new-layout .modal-overlay.open {
        display: flex;
    }

.new-layout .modal-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.new-layout .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e2e6f0;
}

    .new-layout .modal-header h2 {
        font-size: 18px;
        font-weight: 900;
        color: #1a2f5a;
    }

.new-layout .modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #5a6a8a;
    padding: 4px 8px;
}

.new-layout .modal-body {
    overflow-y: auto;
    padding: 20px 24px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    text-align: left;
}

    .new-layout .modal-body p {
        margin-bottom: 12px;
    }

    .new-layout .modal-body strong {
        color: #1a2f5a;
    }

.new-layout .privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

    .new-layout .privacy-table th,
    .new-layout .privacy-table td {
        border: 1px solid #e0e0e0;
        padding: 8px;
        font-size: 12px;
    }

    .new-layout .privacy-table th {
        background: #f5f6f8;
        font-weight: bold;
    }

/* ─── 반응형 모바일 ─── */
@media (max-width: 768px) {
    .new-layout header.baner {
        padding: 0 16px;
        height: 56px;
        top: 41px !important;
    }

    .new-layout #header-logo {
        height: 32px !important;
    }

    .new-layout .header-cta {
        display: none;
    }

    .new-layout .hero,
    .new-layout .main {
        padding-top: 100px !important;
    }

    .new-layout .hero {
        min-height: 100dvh;
        padding: 0 20px 90px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .new-layout .hero-badge {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }

    .new-layout .hero-brand {
        font-size: 56px;
        letter-spacing: -2px;
        margin-bottom: 8px;
    }

    .new-layout .hero-brand-sub {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .new-layout .hero h1 {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .new-layout .hero-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .new-layout .hero-stats {
        padding: 12px 18px;
        gap: 14px;
        margin-bottom: 0;
    }

    .new-layout .hero-stat strong {
        font-size: 18px;
    }

    .new-layout .hero-stat span {
        font-size: 11px;
    }

    .new-layout .hero-btns,
    .new-layout .step:not(:last-child)::after {
        display: none;
    }

    .new-layout .faq,
    .new-layout .cont5 {
        padding: 60px 20px !important;
    }

    .new-layout .features,
    .new-layout .process,
    .new-layout .reassure,
    .new-layout .cta-banner {
        padding: 40px 18px;
    }

    .new-layout .section-title {
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }

        .new-layout .section-title h2 {
            font-size: 22px;
        }

        .new-layout .section-title p {
            font-size: 14px;
        }

    .new-layout .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .new-layout .feature-card {
        padding: 22px 20px;
    }

    .new-layout .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .new-layout .reassure-inner {
        padding: 28px 20px;
    }

        .new-layout .reassure-inner h2 {
            font-size: 20px;
        }

    .new-layout .faq-q {
        padding: 16px 18px !important;
        font-size: 14px !important;
    }

    .new-layout .faq-a {
        padding: 16px 18px !important;
        font-size: 13px !important;
        padding-top: 14px !important;
    }

    .new-layout .btn-dark {
        font-size: 15px;
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
    }

    .new-layout .float-kakao {
        bottom: 90px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .new-layout .footer-addresses {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .new-layout .mobile-bottom-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 300;
        padding: 10px 16px 20px;
        background: linear-gradient(to top, rgba(255,255,255,1) 60%, rgba(255,255,255,0));
    }

        .new-layout .mobile-bottom-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            background: var(--kakao);
            color: var(--kakao-text);
            font-size: 16px;
            font-weight: 700;
            padding: 16px;
            border-radius: 14px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.18);
        }
}

/* ─── 공통 section-title 재정의 ─── */
.new-layout .process .section-title {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
}

    .new-layout .process .section-title h2,
    .new-layout .process .section-title p {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

.new-layout .section-title {
    text-align: center !important;
    margin-bottom: 52px !important;
    display: block !important;
    width: 100% !important;
}

    .new-layout .section-title h2 {
        font-size: 28px !important;
        font-weight: 700 !important;
        color: #1A2F5A !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        display: block !important;
    }

    .new-layout .section-title p {
        font-size: 15px !important;
        color: var(--text-muted) !important;
        text-align: center !important;
        display: block !important;
    }

/* ─── FAQ 추가 재정의 ─── */
.new-layout .faq {
    background-color: #F5F6F8 !important;
    padding: 80px 0 !important;
}

.new-layout .faq-list {
    max-width: 760px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 0 20px !important;
}

.new-layout .faq-item {
    background: #FFFFFF !important;
    border-radius: 8px !important;
    border: 1px solid #E2E8F0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04) !important;
}

.new-layout .faq-q {
    padding: 22px 24px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1A2F5A !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
}

.new-layout .faq-a {
    padding: 22px 24px !important;
    font-size: 14px !important;
    color: #4A5568 !important;
    line-height: 1.7 !important;
    background: #FAFAFA !important;
    border-top: 1px solid #E2E8F0 !important;
}

.new-layout .faq-q .badge {
    background: #1A2F5A !important;
    color: #fff !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    margin-right: 6px !important;
}

.new-layout .features .section-title h2 {
    color: #FFFFFF !important;
}

.new-layout .features .section-title p {
    color: rgba(255, 255, 255, 0.6) !important;
}
