* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px = 62.5% of 16px */
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    font-size: clamp(1.4rem, 1.66667vw, 1.6rem);
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.page-container {
    max-width: calc(750px + 4vw * 2);
    margin: 0 auto;
    padding: 0 4vw;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-container-md {
    max-width: calc(900px + 4vw * 2);
    margin: 0 auto;
    padding: 0 4vw;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-container-lg {
    max-width: calc(1200px + 4vw * 2);
    margin: 0 auto;
    padding: 0 4vw;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (min-width: 576px) {
    .page-container-lg {
        padding: 0 calc(4vw * 2);
    }
}

@media (min-width: 1200px) {
    .page-container-lg {
        padding: 0 calc(4vw * 3);
    }
}

/* 响应式断点显示/隐藏 */
.mobile-break {
    display: block;
}

.desktop-break {
    display: none;
}

@media (min-width: 768px) {
    .mobile-break {
        display: none;
    }
    .desktop-break {
        display: block;
    }
}

.header-desktop {
    display: none;
    background: white;
    border-top: 8px solid #22538d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .header-desktop {
        display: block;
    }
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(-100%);
}

@media (min-width: 992px) {
    .header-sticky.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .header-sticky {
        position: sticky;
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2vw;
    padding-right: 2vw;
}

@media (min-width: 992px) {
    .header-content {
        padding-left: 48px;
        padding-right: 48px;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    margin-right: 24px;
    padding: 16px 0;
    text-decoration: none;
}

@media (max-width: 991px) {
    .logo-link {
        padding: 10px 0;
    }
}

.logo-img {
    max-width: 400px;
    height: 40px;
    object-fit: contain;
}

.logo-img-small {
    max-width: 400px;
    height: 32px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .logo-img-small {
        height: 28px;
    }
}

.nav-desktop {
    display: none;
    margin-left: auto;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: block;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 14px;
    padding: 0 12px;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #22538d;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    align-self: center;
}

@media (min-width: 1200px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 88vw;
    height: 100%;
    background: white;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s;
}

@media (min-width: 1200px) {
    .mobile-drawer {
        display: none;
    }
}

.mobile-drawer.active {
    transform: translateX(0);
}

.app-drawer-header {
    padding: 16px;
    border-bottom: 1px solid rgba(5, 5, 5, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-drawer-header-close-only {
}

.app-drawer-header-title {
    display: flex;
    align-items: center;
}

.app-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 20px;
    color: #22538d;
    padding: 8px;
}

.app-drawer-close:hover {
    color: #0f2e4d;
}

.anticon {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.mobile-nav-link:hover {
    background-color: #f5f5f5;
}

/* Home Page Styles */
.page-home {
    background-color: #fff;
}

/* Hero Section */
.hero-section {
    background-color: #22538d;
    padding-top: 10px;
    padding-bottom: 60px;
}

.hero-title {
    font-size: clamp(40px, 6.5vw, 94px);
    color: #fff24a;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #fff24a;
    margin-bottom: 0;
}

.hero-title-white {
    color: white;
}

.hero-title-white small {
    color: white;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 44px);
    text-align: center;
    color: white;
    font-weight: normal;
    letter-spacing: 5px;
    margin: 0;
}

/* Main Visual Section */
.main-visual-section {
    position: relative;
    margin-top: -50px;
    background-color: #cce3ee;
    overflow: hidden;
    width: 100%;
}

.main-visual-bg {
    transform: translateY(-4px);
    width: 100%;
}

.main-visual-desktop {
    display: none;
    width: 100%;
    max-width: 100%;
}

.main-visual-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .main-visual-desktop {
        display: block;
    }
    .main-visual-mobile {
        display: none;
    }
}

.main-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.main-visual-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.main-visual-icon {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 42vw;
    right: 16px;
}

@media (min-width: 768px) {
    .main-visual-icon {
        width: 180px;
        height: 180px;
        top: 4px;
    }
}

.fraud-types {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 20px;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.fraud-type-item {
    width: calc(50% - 10px);
    font-size: 11px;
    color: white;
    text-align: center;
    background-color: #22538d;
    padding: 4px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .fraud-type-item {
        width: calc(33.333% - 10px);
        font-size: inherit;
        white-space: normal;
    }
}

/* Contact Section */
.contact-section {
    background-color: #2f5289;
    padding: 30px 0;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
}

.contact-title {
    font-size: 22px;
    color: #fff24a;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: clamp(2.4rem, 3.0vw, 28px);
        margin-bottom: 30px;
    }
}

.contact-subtitle {
    font-size: 13px;
    color: white;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact-subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

.contact-image {
    display: block;
    margin: 0 auto 30px;
}

.contact-button-wrapper {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 3px 0 #448637;
}

.contact-button {
    display: block;
    width: 100%;
    border-radius: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-button:hover {
    opacity: 0.9;
}

/* Situation Section */
.situation-section {
    background-color: #e0e0e0;
    padding-top: 20px;
    padding-bottom: 80px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
}

.situation-title {
    font-size: clamp(2.7rem, 3.4375vw, 3.3rem);
    color: #22538d;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 0;
}

.situation-title-highlight {
    padding-top: 0.2em;
    background-image: radial-gradient(circle at center, #22538d 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
}

.situation-subtitle {
    font-size: clamp(2.4rem, 3.33333vw, 3.2rem);
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

.situation-subtitle small {
    font-size: 60%;
}

.consultation-examples {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 100%;
    box-sizing: border-box;
}

.consultation-item {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    font-size: 13px;
    color: #22538d;
    background: white;
    padding: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .consultation-item {
        width: calc(33.333% - 10px);
        padding: 5px;
        box-sizing: border-box;
    }
}

.consultation-icon {
    width: 28px;
    height: 26px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .consultation-icon {
        width: 16px;
        height: 16px;
    }
}

.situation-conclusion {
    font-size: clamp(2.4rem, 3.33333vw, 3.2rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
}

.situation-conclusion small {
    font-size: 60%;
    color: #22538d;
}

.fraud-highlight {
    color: white;
    background-color: #22538d;
}

.fraud-text {
    color: #fff24a;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
}

.statistics-title {
    font-size: clamp(2.8rem, 3.2vw, 35px);
    font-weight: bold;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 50px;
}

.statistics-icon {
    width: 60px;
    height: 54px;
    margin: 0 auto;
    display: block;
}

.statistics-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.statistics-text {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin: 1em 0;
}

.highlight-yellow {
    background-image: linear-gradient(transparent 80%, #e8d95c 20%);
}

.expert-comment {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 2em 0;
}

.comment-arrow-left {
    position: absolute;
    top: 50px;
    left: 0;
    border: 16px solid transparent;
    border-right: 24px solid #e3e6ed;
    border-bottom: 12px solid #e3e6ed;
}

.comment-arrow-inner {
    position: absolute;
    top: 52px;
    left: 11px;
    border: 14px solid transparent;
    border-right: 20px solid white;
    border-bottom: 8px solid white;
}

.comment-bubble {
    position: relative;
    font-weight: bold;
    padding: 20px 30px;
    border: 4px solid #e3e6ed;
    border-radius: 20px;
    margin-left: 36px;
}

/* Service Comparison Section */
.service-comparison-section {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.service-title {
    position: relative;
    font-size: clamp(3rem, 3.64583vw, 3.5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: #22538d;
}

.service-title-link {
    color: black;
    text-decoration: none;
}

.service-title-link:hover {
    color: #333;
}

.service-content {
    background: white;
    padding: 20px;
}

.service-text {
    font-size: 19px;
    text-align: center;
    margin: 1em 0;
}

.comparison-chart {
    padding: 0 10%;
}

.comparison-desktop {
    display: none;
}

.comparison-mobile {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .comparison-desktop {
        display: block;
    }
    .comparison-mobile {
        display: none;
    }
}

.comparison-note {
    font-size: 11px;
    color: #22538d;
    text-align: center;
    margin-top: -1vw;
}

.service-warning {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 1em 0 0;
}

.warning-highlight {
    color: #22538d;
}

/* Trust Section */
.trust-section {
    background-color: #cce3ee;
    margin-top: -40px;
    padding-top: 70px;
    padding-bottom: 40px;
    clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
}

.trust-title {
    font-size: 33px;
    color: #112667;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.trust-content {
    display: flex;
    align-items: flex-end;
    margin-bottom: 60px;
}

.trust-bubble {
    position: relative;
    font-size: clamp(1.6rem, 1.97917vw, 1.9rem);
    color: #22538d;
    background: white;
    padding: 20px;
    border-radius: 20px;
}

.trust-arrow {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: 30px;
    height: 30px;
    background: white;
    transform: rotate(-5deg);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.trust-subtitle {
    color: white;
    text-align: center;
    background: #50bcd1;
    margin: 1em 0;
    padding: 5px;
    border-radius: 25px;
}

.consultation-points {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.consultation-point {
    display: flex;
    align-items: center;
    color: #22538d;
    text-align: center;
    margin-bottom: 10px;
}

.consultation-point img {
    margin-right: 10px;
}

/* Process Section */
.process-section {
    padding: 40px 0;
}

.process-title {
    font-size: 32px;
    color: #112667;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.process-item {
    background-color: #f7f7f7;
    margin-bottom: 35px;
    border-top: 2px solid #22538d;
    border-radius: 3px;
}

.process-point {
    display: inline-block;
    font-size: 12px;
    color: white;
    background-color: #22538d;
    padding: 0 50px;
    text-align: center;
    margin-bottom: 10px;
}

.process-subtitle {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    padding: 0 36px;
}

.process-highlight {
    color: #22538d;
}

.process-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin: 20px 0;
}

.process-description {
    font-size: 13px;
    margin: 0;
    padding: 0 36px 20px;
}

@media (min-width: 768px) {
    .process-description {
        font-size: 15px;
    }
}

.process-conclusion {
    font-size: 22px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin: 1em 0;
}

.process-conclusion-highlight {
    color: #fff24a;
    background-color: #22538d;
}

.convenience-store-section {
    position: relative;
    color: white;
    background-color: #22538d;
    border-radius: 3px;
    overflow: hidden;
}

.check-badge {
    position: absolute;
    top: -25px;
    left: -45px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 120px;
    height: 80px;
    color: #22538d;
    font-weight: bold;
    background: #fff24a;
    padding-bottom: 5px;
    transform: rotate(-45deg);
}

.convenience-store-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 20px 36px 0;
}

.convenience-store-highlight {
    font-size: 140%;
    color: #fff24a;
}

/* Case Studies Section */
.case-studies-section {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.case-studies-title {
    font-size: 34px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.case-studies-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background-color: #22538d;
    margin: 20px auto 0;
}

.case-studies-intro {
    margin-bottom: 20px;
}

.case-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    margin-bottom: 18px;
    padding: 50px 20px 30px;
    border: 1px solid #22538d;
    border-radius: 3px;
}

@media (min-width: 768px) {
    .case-item {
        flex-direction: row;
    }
}

.case-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    font-size: 12px;
    color: white;
    line-height: 1.3;
    background-color: #22538d;
    padding: 5px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.case-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 768px) {
    .case-content {
        flex-direction: row;
    }
}

.case-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    flex-basis: 200px;
    margin-bottom: 20px;
    padding-right: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #22538d;
}

@media (min-width: 768px) {
    .case-header {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        border-bottom: none;
        border-right: 1px solid #22538d;
    }
}

.case-avatar {
    max-width: 112px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .case-avatar {
        margin: 0 auto 20px;
    }
}

.case-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .case-title {
        text-align: center;
    }
}

.case-title p {
    margin-bottom: 0;
}

.case-amount {
    color: #22538d;
}

.case-description {
    font-size: 14px;
}

@media (min-width: 768px) {
    .case-description {
        padding-left: 30px;
    }
}

.case-description p {
    margin-bottom: 0;
}

.case-disclaimer {
    font-size: 11px;
    color: #22538d;
    margin: 1em 0 40px;
}

.more-cases {
    text-align: center;
}

.more-cases-title {
    font-size: 19px;
    margin: 1em 0;
}

.more-cases img {
    max-width: 100%;
}

.line-consultation {
    font-size: 32px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin: 1em 0;
}

.line-highlight {
    font-size: 130%;
    color: white;
    background-color: #06c755;
}

.line-text {
    color: #0e276b;
}

.line-now {
    font-size: 130%;
    padding-top: 0.2em;
    background-image: radial-gradient(circle at center, #22538d 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
}

/* Solution Process Section */
.solution-process-section {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.solution-title {
    font-size: 30px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.solution-intro-image {
    width: 100%;
    margin-bottom: min(6.66667vw, 40px);
}



.solution-step {
    position: relative;
    display: flex;
    gap: 20px;
    background: white;
    margin-top: 100px;
    margin-bottom: 24px;
    padding: 20px 30px;
    border: 1px solid #22538d;
    border-radius: 3px;
}

@media (min-width: 768px) {
    .solution-step {
        margin-top: 0;
    }
}

.step-number {
    position: absolute;
    left: 20px;
    bottom: 100%;
    flex-basis: 65px;
    font-size: 80px;
    color: #22538d;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .step-number {
        position: relative;
        left: auto;
        bottom: auto;
        font-size: 30px;
        margin-bottom: 10px;
    }
}

.step-number small {
    font-size: 40%;
}

@media (min-width: 768px) {
    .step-number small {
        font-size: 40%;
    }
}

.step-content {
    color: #22538d;
}

.step-icon {
    display: none;
}

@media (min-width: 768px) {
    .step-icon {
        display: block;
    }
}

.step-title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .step-title {
        text-align: left;
        margin: 0 auto;
    }
}

.step-description {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
}

.pricing-title {
    font-size: 34px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.pricing-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background-color: #22538d;
    margin: 20px auto 0;
}



.pricing-item {
    display: flex;
    background-color: #f7f7f7;
    border-bottom: 1px solid white;
}

.pricing-type {
    flex-basis: 86px;
    font-size: 15px;
    color: white;
    font-weight: bold;
    background-color: #22538d;
    padding: 10px;
}

.pricing-content {
    padding: 10px;
    flex: 1;
}

.pricing-label {
    font-size: 15px;
    color: #22538d;
    font-weight: bold;
    margin-bottom: 0;
}

.pricing-free {
    background-color: #fff24a;
    padding: 0 5px;
}

.pricing-description {
    font-size: 13px;
    margin-bottom: 0;
}

/* Payment Methods Section */
.payment-methods-section {
    background-color: #f7f7f7;
    padding: 40px 0;
}

.payment-title {
    font-size: 34px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 700px;
    text-align: center;
    background: white;
    margin: 0 auto 40px;
    padding: 30px 0;
    border: 4px solid #e3e6ed;
}

.payment-subtitle {
    font-size: clamp(20px, 3.0vw, 26px);
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #c7d7f0;
    padding-bottom: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: bold;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.payment-methods li {
    margin: 0 20px;
}

.payment-image {
    width: 90%;
    max-width: 520px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
}

.faq-title {
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background-color: #22538d;
    margin: 20px auto 0;
}

.faq-list {
    background-color: #f7f7f7;
    border-radius: 0;
}



.faq-question {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 35px 20px 20px;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq-q {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 25px;
    width: 25px;
    height: 25px;
    color: white;
    font-weight: bold;
    background-color: #22538d;
}

.faq-q-text {
    color: #22538d;
    flex: 1;
}

.faq-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #22538d;
    transition: transform 0.3s;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    gap: 15px;
    padding: 0 60px 20px 20px;
}

.faq-answer.active {
    display: flex;
}

.faq-a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 25px;
    width: 25px;
    height: 25px;
    color: #22538d;
    font-weight: bold;
    background: white;
    border: 1px solid #22538d;
}

.faq-a-text {
    font-size: 14px;
    line-height: 1.3;
    flex: 1;
}

/* Company Info Section */
.company-info-section {
    padding: 40px 0;
}

.company-title {
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.company-info {
    display: flex;
    gap: 10px;
    font-size: clamp(1.7rem, 1.97917vw, 1.9rem);
    margin-bottom: 10px;
}

.company-info dt {
    flex-basis: 5em;
    flex-shrink: 0;
}

.company-info dd {
    color: #22538d;
    margin: 0;
}

.company-info-small {
    font-size: 17px;
    color: #22538d;
    margin-bottom: 10px;
}

.company-info-small dt {
    font-weight: bold;
}

.company-info-small dd {
    margin: 0;
}

/* Footer */
.footer {
    color: white;
    background-color: #22538d;
    margin-top: auto;
    padding: 1em 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 3vw;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .footer-nav {
        font-size: 13px;
    }
}

.footer-nav li {
    padding: 0 0.75em;
    border-left: 1px solid white;
}

@media (min-width: 768px) {
    .footer-nav li:first-child {
        border-left: 1px solid white;
    }
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 12px;
    text-align: center;
    margin: 10px 0 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20%;
    right: 20px;
    width: 52px;
    height: 52px;
    background: white;
    border: 1px solid #22538d;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.75;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 100;
    display: none;
}

.back-to-top.visible {
    display: block;
}

.back-to-top:hover {
    background-color: #22538d;
    color: white;
}

.back-to-top span {
    font-size: 14px;
    color: #22538d;
}

.back-to-top:hover span {
    color: white;
}

/* 工具类 */
.text-center {
    text-align: center;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

@media (max-width: 767px) {
    .d-md-none {
        display: none;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
}

/* Article Page Styles */
.page-article {
    background-color: #fff;
}

.article-section {
    padding: 4em 0;
}

.article-page-title {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 4em;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2em;
}

@media (min-width: 768px) {
    .article-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.article-item {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1.5em;
}

.article-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 0.5em;
    color: #22538d;
}

.article-excerpt {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0 0 1em;
    color: #666;
}

.article-meta {
    font-size: 0.8em;
    color: #999;
}

.article-date {
    display: inline-block;
}

/* Additional styles for new sections */

/* Case number correction */
.case-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    font-size: 12px;
    color: white;
    line-height: 1.3;
    background: #22538d;
    padding: 5px 0 0 5px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Case content styles correction */
.case-content {
    font-size: 14px;
}

@media (min-width: 768px) {
    .case-content {
        padding-left: 30px;
    }
}

.case-content p {
    margin-bottom: 0;
}

/* Other cases section */
.other-cases {
    text-align: center;
    margin-top: 40px;
}

.other-cases-title {
    font-size: 19px;
    margin: 1em 0;
}

.other-cases-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.line-consultation-title {
    font-size: 32px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin: 1em 0;
}

/* Solution Flow Section Updates */
.solution-flow-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.solution-flow-title {
    font-size: 30px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.solution-flow-image {
    margin-bottom: min(6.66667vw, 40px);
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.flow-steps {
    margin-top: 40px;
}

.flow-step {
    position: relative;
    display: flex;
    gap: 20px;
    background: white;
    margin-bottom: 24px;
    padding: 20px 30px;
    border: 1px solid #22538d;
    border-radius: 3px;
}

@media (max-width: 767px) {
    .flow-step {
        margin-top: 100px;
    }
    
    .flow-step:first-child {
        margin-top: 24px;
    }
}

.step-number {
    position: absolute;
    left: 20px;
    bottom: 100%;
    flex: 0 0 65px;
    font-size: 80px;
    color: #22538d;
    font-weight: bold;
    line-height: 1;
    margin-bottom: -5px;
}

@media (min-width: 768px) {
    .step-number {
        position: relative;
        left: 0;
        bottom: auto;
        font-size: 30px;
        margin-bottom: 10px;
    }
}

.step-content {
    color: #22538d;
    flex: 1;
}

.step-title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 10px;
}

@media (min-width: 768px) {
    .step-title {
        text-align: left;
        margin: 0 0 10px 0;
    }
}

.step-icon-mobile {
    display: block;
    margin: 0 auto 20px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .step-icon-mobile {
        display: none;
    }
}

.step-icon-desktop {
    display: none;
    max-width: 100%;
}

@media (min-width: 768px) {
    .step-icon-desktop {
        display: block;
    }
}

.step-description {
    font-size: 13px;
    font-weight: bold;
    margin: 0;
}

/* Fee Section Updates */
.fee-section {
    padding: 40px 0;
}

.fee-title {
    font-size: 34px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.fee-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background: #22538d;
    margin: 20px auto 0;
}

.fee-items {
    margin-top: 30px;
}

.fee-item {
    display: flex;
    background: #f5f5f5;
    border-bottom: 1px solid white;
}

.fee-type {
    flex: 0 0 86px;
    font-size: 15px;
    color: white;
    font-weight: bold;
    background: #22538d;
    padding: 10px;
}

.fee-details {
    padding: 10px;
    flex: 1;
}

.fee-amount {
    font-size: 15px;
    color: #22538d;
    font-weight: bold;
    margin-bottom: 0;
}

.fee-free {
    background: #fadb14;
    color: #000;
    padding: 2px 6px;
    margin-left: 4px;
}

.fee-description {
    font-size: 13px;
    margin-bottom: 0;
}

/* Payment Method Section Updates */
.payment-method-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.payment-title {
    font-size: 34px;
    color: #22538d;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.payment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 700px;
    text-align: center;
    background: white;
    margin: 0 auto 40px;
    padding: 30px;
    border: 4px solid #e3e6ed;
}

.payment-subtitle {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #b3d9ff;
    padding-bottom: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: bold;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.payment-methods li {
    margin: 0 20px;
}

.payment-cards-image {
    width: 90%;
    max-width: 520px;
}

/* About Page Styles */
.page-about {
    background-color: #fff;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f7f7f7;
    padding: 8px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.breadcrumb-link {
    color: #22538d;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.breadcrumb-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-current {
    color: #333;
}

/* About Section */
.about-section {
    padding: 4em 0;
}

.page-container-md {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw;
}

@media (min-width: 992px) {
    .page-container-md {
        padding: 0 48px;
    }
}

.about-page-title {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 4em;
}

.about-title-text {
    display: inline-block;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: -1px;
    padding: 0.25em 0.5em;
    border-bottom: 1px solid #22538d;
}

@media (min-width: 1024px) {
    .about-title-text {
        font-size: 24px;
    }
}

/* Lawyers List */
.lawyers-list {
    font-size: 4vw;
    margin: 4em 0;
}

@media (min-width: 640px) {
    .lawyers-list {
        font-size: inherit;
    }
}

@media (min-width: 1024px) {
    .lawyers-list {
        padding: 0 16px;
    }
}

.lawyer-item {
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid #e5e5e5;
}

.lawyer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (min-width: 1024px) {
    .lawyer-item {
        flex-direction: row;
        gap: 2em;
    }
}

.lawyer-photo {
    flex: 0 0 15em;
    width: 15em;
    height: 20em;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .lawyer-photo {
        margin: 0;
    }
}

.lawyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lawyer-info {
    flex: 1;
    min-width: 0;
}

.lawyer-name {
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 0 0.5em 0;
    color: #333;
}

.lawyer-registration {
    font-size: 0.8em;
    color: #999;
    margin: 0 0 0.25em 0;
    line-height: 1.4;
}

.lawyer-position {
    font-size: 0.8em;
    color: #999;
    margin: 0 0 2em 0;
    line-height: 1.4;
}

.lawyer-description {
    line-height: 1.6;
}

.lawyer-description p {
    margin: 0 0 1.5em 0;
}

.lawyer-description p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 639px) {
    .lawyer-photo {
        width: 12em;
        height: 16em;
    }
    
    .lawyer-name {
        font-size: 1.2em;
    }
    
    .lawyer-registration,
    .lawyer-position {
        font-size: 0.75em;
    }
}

@media (max-width: 479px) {
    .about-section {
        padding: 2em 0;
    }
    
    .about-page-title {
        margin-bottom: 2em;
    }
    
    .lawyers-list {
        margin: 2em 0;
    }
    
    .lawyer-item {
        margin-bottom: 1.5em;
    }
    
    .lawyer-photo {
        width: 10em;
        height: 14em;
    }
}

/* =====================================
   Article Styles
   ===================================== */

/* Article List Page */
.page-article {
    min-height: 100vh;
}

.article-section {
    padding: 4em 0;
}

.article-page-title {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4em;
}

.article-title-text {
    display: inline-block;
    font-size: clamp(1.3em, 4vw, 24px);
    font-weight: bold;
    margin-bottom: -1px;
    padding: 0.25em 0.5em;
    border-bottom: 1px solid #22538d;
}

.article-intro {
    font-size: clamp(16px, 4vw, 18px);
    margin: 4em 0;
    padding: 0 16px;
}

.article-intro-text {
    margin-bottom: 2em;
}

.article-intro-text:last-child {
    margin-bottom: 0;
}

.article-intro-link {
    color: #22538d;
    text-decoration: underline;
}

.article-intro-link:hover {
    opacity: 0.8;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px 16px;
}

.article-item {
    display: flex;
    flex-direction: column;
}

.article-link {
    display: flex;
    flex-direction: column;
    gap: 1em;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.article-link:hover {
    opacity: 0.75;
}

.article-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.article-link:hover .article-image-wrapper {
    transform: scale(1.02);
}

.article-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #d8ffff, #87e7ff);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.article-link:hover .article-image-wrapper::after {
    opacity: 0.2;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-link:hover .article-image {
    transform: scale(1.1);
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.article-title {
    font-size: clamp(16px, 3.8vw, 18px);
    margin: 0;
    font-weight: 600;
}

.article-summary {
    font-size: clamp(13px, 3.2vw, 14px);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #666;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 2px;
}

.article-date-icon {
    font-size: 12px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Article Detail Page */
.page-article-detail {
    min-height: 100vh;
}

.article-detail-section {
    padding: 2em 0;
}

.article-detail-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
}

.article-detail-main {
    flex: 1;
    min-width: 0;
}

.article-sidebar {
    width: 280px;
    display: none;
}

.article-header {
    margin-bottom: 2em;
}

.article-detail-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: bold;
    line-height: 1.4;
    margin: 0 0 1em 0;
}

.article-intro-content {
    margin: 4em 0;
    font-size: clamp(16px, 4vw, 18px);
}

/* Table of Contents */
.contents-list {
    --bg-color: rgba(199, 199, 199, 0.15);
    max-width: 800px;
    margin: 4em auto;
    padding: 2em;
    background-image: linear-gradient(
        -45deg,
        transparent 25%,
        var(--bg-color) 25%,
        var(--bg-color) 50%,
        transparent 50%,
        transparent 75%,
        var(--bg-color) 75%,
        var(--bg-color)
    );
    background-size: 4px 4px;
    background-clip: padding-box;
    border: double 4px #d1d5db;
    border-top-width: 4px;
    border-bottom-width: 4px;
}

.contents-list h4 {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 0.75em;
    font-size: 1.2em;
}

.contents-icon {
    font-size: 1em;
}

.contents-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contents-list ul > li {
    position: relative;
    margin: 0.25em 0;
    padding-left: 1.25em;
    line-height: 1.6;
}

.contents-list ul > li:not(:first-child) {
    margin-top: 0.5em;
}

.contents-list ul > li::before {
    position: absolute;
    top: calc(0.5em * 1.6 - 3px);
    left: 2px;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 100%;
    content: '';
}

.contents-list ol {
    list-style: none;
    padding: 0;
    margin: 0.5em 0 0 0;
}

.contents-list ol > li {
    position: relative;
    margin: 0.25em 0;
    padding-left: 1.25em;
    font-size: 0.9em;
    line-height: 1.6;
}

.contents-list ol > li::before {
    position: absolute;
    top: 0.25em;
    left: 0.25em;
    width: 6px;
    height: calc(1em - 2px);
    border-bottom: 2px solid #d1d5db;
    border-left: 2px solid #d1d5db;
    opacity: 0.75;
    content: '';
}

.contents-list ul.collapsed .default-hidden {
    display: none;
}

.collapse-trigger {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 0.75em;
}

.collapse-trigger button {
    position: relative;
    padding: 0.5em 1em;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 99px;
    box-shadow: 0 0 0 1px #bbb;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.collapse-trigger button:hover {
    border-color: transparent;
    box-shadow: 0 0 0 2px currentcolor;
}

.contents-list ul.collapsed + .collapse-trigger::before {
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 4em;
    background: linear-gradient(hsla(0, 0%, 100%, 0), #fdfdfd);
    opacity: 0.75;
    content: '';
    pointer-events: none;
}

.contents-list ul.collapsed + .collapse-trigger button::before,
.contents-list ul.collapsed + .collapse-trigger button::after {
    position: absolute;
    top: calc(50% - 1px);
    display: block;
    width: 22px;
    height: 1px;
    border-top: 3px dotted;
    border-top-color: inherit;
    transition: border-color 0.25s;
    content: '';
}

.contents-list ul.collapsed + .collapse-trigger button::before {
    right: calc(100% + 1em);
}

.contents-list ul.collapsed + .collapse-trigger button::after {
    left: calc(100% + 1em);
}

/* Article Content */
.article-content {
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
}

.article-content a {
    color: #1176d4;
    text-decoration: underline;
}

.article-content a:hover {
    opacity: 0.8;
}

.article-section-title {
    font-size: 1.4em;
    color: white;
    font-weight: bold;
    background-color: #22538d;
    margin-top: 4em;
    margin-bottom: 2em;
    padding: 0.75em 1em;
}

.article-section-content {
    margin: 4em 0;
    padding: 0 16px;
}

.article-subsection-title {
    position: relative;
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: bold;
    margin-top: 3em;
    margin-bottom: 2em;
    padding: 0.25em 0.5em;
    border-bottom: 2px solid #e5e7eb;
}

.article-subsection-title::before {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #22538d;
    content: '';
}

.article-subsection-content {
    margin-bottom: 2em;
}

/* Responsive Design for Articles */
@media (min-width: 576px) {
    .article-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .article-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .article-sidebar {
        display: block;
    }
}

@media (min-width: 1200px) {
    .article-sidebar {
        width: 304px;
    }
}

/* =====================================
   CSR Styles
   ===================================== */

.page-csr, .page-csr-detail {
    min-height: 100vh;
}

.csr-section {
    padding: 4em 0;
}

.csr-content-section {
    padding: 4em 0;
}

.csr-title, .csr-page-title {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4em;
}

.csr-title-text {
    display: inline-block;
    font-size: clamp(1.3em, 4vw, 24px);
    font-weight: bold;
    margin-bottom: -1px;
    padding: 0.25em 0.5em;
    border-bottom: 1px solid #22538d;
}

.csr-content, .csr-detail-content {
    font-size: clamp(16px, 4vw, 18px);
    margin: 4em 0;
    padding: 0 16px;
}

.csr-link-list {
    list-style-type: disc;
    padding-left: 1.5em;
    margin: 0;
}

.csr-link-item {
    margin: 0.25em 0 0.75em;
    padding-bottom: 0.75em;
    border-bottom: 1px dashed #e5e7eb;
}

.csr-link {
    color: #22538d;
    text-decoration: underline;
}

.csr-link:hover {
    opacity: 0.8;
}

.csr-paragraph {
    margin-bottom: 2em;
}

.csr-section-title {
    font-size: 1.4em;
    color: white;
    font-weight: bold;
    background-color: #22538d;
    margin-top: 4em;
    margin-bottom: 2em;
    padding: 0.75em 1em;
}

.csr-subsection-title {
    position: relative;
    margin-top: 3em;
    margin-bottom: 2em;
    border-bottom: 2px solid #e5e7eb;
}

.csr-subsection-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: #22538d;
}

.csr-subsection-text {
    display: inline-block;
    font-size: clamp(1.1em, 4vw, 1.3em);
    font-weight: bold;
    padding: 0.25em 0.5em;
}

.csr-topic-title {
    font-size: clamp(1.05em, 4vw, 1.2em);
    font-weight: bold;
    margin-top: 3em;
    margin-bottom: 1.5em;
    padding-left: 16px;
    border-left: 2px solid #22538d;
}

.csr-divider {
    max-width: 100px;
    margin: 2.5em auto;
    border-top: 1px solid #d1d5db;
}

.csr-conclusion {
    text-align: center;
          font-weight: 500;
  }

/* =====================================
   Contact Form Styles
   ===================================== */

.page-contact {
    min-height: 100vh;
}

.contact-section {
    padding: 4em 0;
}

.contact-title {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4em;
}

.contact-title-text {
    display: inline-block;
    font-size: clamp(1.3em, 4vw, 24px);
    font-weight: bold;
    margin-bottom: -1px;
    padding: 0.25em 0.5em;
    border-bottom: 1px solid #22538d;
}

.contact-content {
    font-size: clamp(16px, 4vw, 18px);
    margin: 4em 0;
    padding: 0 16px;
}

.contact-text {
    margin-bottom: 2em;
}

.line-button {
    display: block;
    width: 100%;
    max-width: 80%;
    margin: 0 auto 2em;
    padding: 1em 1.5em;
    background-color: #22538d;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.5s;
    text-decoration: none;
}

.line-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-table {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.contact-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e5e7eb;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-label {
    padding: 12px 16px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.contact-input {
    padding: 12px 16px;
}

.contact-label-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: nowrap;
}

.contact-required-badge {
    font-size: 12px;
    color: white;
    background-color: #ef4444;
    padding: 5px;
    border-radius: 2px;
    white-space: nowrap;
}

.contact-label-text {
    font-size: 14px;
    font-weight: bold;
}

.contact-input-field, .contact-textarea-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
}

.contact-textarea-field {
    resize: vertical;
}

.contact-error-message {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
}

.contact-submit-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.contact-submit-button {
    display: block;
    width: 350px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #22538d;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: box-shadow 0.5s;
}

.contact-submit-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #22538d;
    width: 30px;
    height: 30px;
    animation: contact-spin 1s linear infinite;
}

.contact-loading-spinner.show {
    display: block;
}

@keyframes contact-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (min-width: 640px) {
    .contact-row {
        flex-direction: row;
    }
    
    .contact-label {
        width: 30%;
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
    }
    
    .contact-input {
        width: 70%;
    }
}

/* =====================================
   Policy Styles
   ===================================== */

.page-policy {
    min-height: 100vh;
}

.policy-section {
    padding: 4em 0;
}

.policy-title {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4em;
}

.policy-title-text {
    display: inline-block;
    font-size: clamp(1.3em, 4vw, 24px);
    font-weight: bold;
    margin-bottom: -1px;
    padding: 0.25em 0.5em;
    border-bottom: 1px solid #22538d;
}

.policy-content {
    font-size: clamp(16px, 4vw, 18px);
    margin: 4em 0;
    padding: 0 16px;
}

.policy-paragraph {
    margin-bottom: 2em;
    line-height: 1.6;
}

/* =====================================
   Tradelaw Styles
   ===================================== */

.page-tradelaw {
    min-height: 100vh;
}

.tradelaw-section {
    padding: 4em 0;
}

.tradelaw-title {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 4em;
}

.tradelaw-title-text {
    display: inline-block;
    font-size: clamp(1.3em, 4vw, 24px);
    font-weight: bold;
    margin-bottom: -1px;
    padding: 0.25em 0.5em;
    border-bottom: 1px solid #22538d;
}

.tradelaw-content {
    font-size: clamp(16px, 4vw, 18px);
    margin: 4em 0;
    padding: 0 16px;
}

.tradelaw-paragraph {
    margin-bottom: 2em;
    line-height: 1.6;
}