
        :root {
            --req-primary: #1d4e89;
            --req-primary-dark: #16314f;
            --req-accent: #5f8fbe;
            --req-accent-soft: #edf4fb;
            --req-text-main: #1b2d42;
            --req-text-sub: #617285;
            --req-line: #d9e4ef;
            --req-bg-soft: #f7fafe;
            --req-white: #ffffff;
            --req-radius-xl: 28px;
            --req-radius-lg: 22px;
            --req-radius-md: 16px;
            --req-radius-pill: 999px;
            --req-shadow-sm: 0 12px 28px rgba(22, 49, 79, 0.08);
            --req-shadow-md: 0 20px 48px rgba(22, 49, 79, 0.14);
        }

        html { scroll-behavior: smooth; }
        body { color: var(--req-text-main); background: #fff; word-break: keep-all; }

        .banner_area .banner_inner .banner_content { margin-top: 85px; }
        .banner_area .section-head-square {
            width: 200px;
            padding: 3rem 0 3rem 3rem;
        }
        .banner_area .section-head-square > .head-title,
        .banner_area .banner_inner .banner_content h2,
        .banner_area .head-title {
            width: 640px;
            font-size: 28px !important;
            line-height: 1.45 !important;
            font-weight: 700;
            letter-spacing: -0.2px;
            margin-bottom: 0;
        }

        .req-section {
            position: relative;
            padding: 90px 0 120px;
            background: linear-gradient(180deg, #ffffff 0%, #f7fafe 52%, #ffffff 100%);
            overflow: hidden;
        }
        .req-section::before {
            content: "";
            position: absolute;
            top: -140px;
            right: -120px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(95, 143, 190, 0.16) 0%, rgba(95, 143, 190, 0) 72%);
            pointer-events: none;
        }

        .req-hero {
            position: relative;
            z-index: 1;
            margin-bottom: 44px;
            text-align: center;
        }
        .req-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            margin-bottom: 18px;
            border-radius: var(--req-radius-pill);
            background: var(--req-accent-soft);
            color: var(--req-primary);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
        }
        .req-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.03em;
            color: var(--req-primary-dark);
            margin-bottom: 14px;
        }
        .req-title-line {
            width: 60px;
            height: 4px;
            border-radius: var(--req-radius-pill);
            margin: 0 auto 22px;
            background: linear-gradient(90deg, var(--req-primary-dark), var(--req-accent));
        }
        .req-desc {
            max-width: 900px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.85;
            color: var(--req-text-sub);
        }

        .req-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 26px;
            margin-top: 38px;
        }

        .req-card {
            position: relative;
            border-radius: var(--req-radius-lg);
            background: rgba(255,255,255,0.98);
            border: 1px solid var(--req-line);
            box-shadow: var(--req-shadow-sm);
            overflow: hidden;
        }
        .req-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto 0;
            height: 5px;
            background: linear-gradient(90deg, var(--req-primary-dark), var(--req-accent));
        }

        .req-card-head {
            padding: 28px 30px 18px;
            background: linear-gradient(180deg, rgba(95,143,190,.12), rgba(95,143,190,.04));
            border-bottom: 1px solid var(--req-line);
        }
        .req-card-head h2 {
            margin: 0 0 8px;
            font-size: 28px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--req-primary-dark);
        }
        .req-card-head p {
            margin: 0;
            font-size: 14px;
            line-height: 1.8;
            color: var(--req-text-sub);
        }
        .req-card-body { padding: 28px 30px 30px; }

        .req-table-wrap { width: 100%; overflow-x: auto; }
        .req-table {
            width: 100%;
            min-width: 720px;
            border-collapse: collapse;
            background: #fff;
        }
        .req-table thead th {
            padding: 16px 14px;
            background: #f6fafe;
            border-bottom: 1px solid var(--req-line);
            color: var(--req-primary-dark);
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
        }
        .req-table tbody td {
            padding: 18px 16px;
            border-bottom: 1px solid #edf3f8;
            color: #4c6074;
            font-size: 14px;
            line-height: 1.8;
            vertical-align: top;
            background: #fff;
        }
        .req-table tbody tr:hover td { background: #fbfdff; }
        .req-table tbody td:first-child,
        .req-table tbody td:last-child {
            text-align: center;
            white-space: nowrap;
            font-weight: 700;
            color: var(--req-text-main);
            background: #fcfdff;
        }

        .req-info-list { list-style: none; margin: 0; padding: 0; }
        .req-info-list li {
            position: relative;
            padding: 0 0 0 18px;
            margin-bottom: 12px;
            color: var(--req-text-sub);
            line-height: 1.85;
            font-size: 15px;
        }
        .req-info-list li:last-child { margin-bottom: 0; }
        .req-info-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 11px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--req-accent);
        }

        .req-step-list { display: grid; gap: 14px; margin-bottom: 22px; }
        .req-step-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 18px;
            border-radius: var(--req-radius-md);
            background: #fcfdff;
            border: 1px solid rgba(95, 143, 190, 0.14);
        }
        .req-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--req-accent-soft);
            color: var(--req-primary);
            font-weight: 800;
            font-size: 14px;
            flex-shrink: 0;
        }
        .req-step-text {
            font-size: 15px;
            font-weight: 600;
            color: var(--req-primary-dark);
        }

        .req-mail-box {
            margin-top: 22px;
            padding: 22px 24px;
            border-radius: var(--req-radius-md);
            background: #f8fbfe;
            border: 1px solid var(--req-line);
        }
        .req-mail-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 14px;
            margin-bottom: 12px;
            border-radius: var(--req-radius-pill);
            background: var(--req-accent-soft);
            color: var(--req-primary);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .04em;
        }
        .req-mail-title {
            margin: 0 0 8px;
            font-size: 20px;
            font-weight: 800;
            color: var(--req-primary-dark);
        }
        .req-mail-desc {
            margin: 0 0 12px;
            color: var(--req-text-sub);
            line-height: 1.8;
            font-size: 15px;
        }
        .req-mail-link {
            color: var(--req-primary);
            font-weight: 700;
            text-decoration: none;
            word-break: break-all;
        }
        .req-mail-link:hover {
            color: var(--req-primary-dark);
            text-decoration: underline;
        }

        @media (max-width: 1199px) {
            .req-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 991px) {
            .banner_area .section-head-square {
                width: 200px;
                padding: 2.5rem 0 2.5rem 2.5rem;
            }
            .banner_area .section-head-square > .head-title,
            .banner_area .banner_inner .banner_content h2,
            .banner_area .head-title {
                width: 100%;
                font-size: 24px !important;
                line-height: 1.45 !important;
            }
            .req-section { padding: 70px 0 90px; }
            .req-title { font-size: 34px; }
            .req-card-head { padding: 24px 22px 18px; }
            .req-card-body { padding: 24px 22px 24px; }
            .req-card-head h2 { font-size: 24px; }
        }
        @media (max-width: 767px) {
            .banner_area .section-head-square {
                width: 160px;
                padding: 2rem 0 2rem 2rem;
                margin: 0 auto;
            }
            .banner_area .section-head-square > .head-title,
            .banner_area .banner_inner .banner_content h2,
            .banner_area .head-title {
                width: 100%;
                font-size: 20px !important;
                line-height: 1.5 !important;
            }
            .req-section { padding: 56px 0 72px; }
            .req-kicker { margin-bottom: 14px; }
            .req-title { font-size: 28px; }
            .req-desc { font-size: 15px; }
            .req-card-head { padding: 20px 18px 16px; }
            .req-card-body { padding: 20px 18px 20px; }
            .req-card-head h2 { font-size: 21px; }
            .req-step-item { align-items: flex-start; }
            .req-step-text { line-height: 1.6; }
        }
