/* =========================================
   SERVICE PAGE SPECIFIC STYLES
   ========================================= */

.service-page-section {
    padding: 60px 0;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 60px 0;
    max-width: 1030px;
}

.service-tab {
    flex: 0 1 250px;
    height: 64px;
    box-sizing: border-box;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 24px;
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    transition: all 0.3s ease;
    font-size: var(--font-sm);
}

.service-tab:hover {
    background-color: #d1f0ef;
}

.service-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Service Content Area */
.service-tab-content {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
}

.service-tab-content.active {
    display: block;
}

.service-content-header {
    margin-bottom: 40px;
}

.service-content-title {
    color: var(--primary-color);
    font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.service-content-en {
    color: #6CD2D0;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.service-content-heading {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
}

.service-content-desc {
    font-size: var(--font-sm);
    line-height: 1.8;
    color: #333333;
    margin-bottom: 60px;
}

/* Accounting Badges Section */
.accounting-badges-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.accounting-badges-images {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

/* Problems Section */
.service-problems-section {
    margin-top: 60px;
}

.problems-title {
    text-align: left;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 40px;
}

.problems-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.problem-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card {
    background-color: #F8F9FA;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.problem-icon {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.problem-icon img {
    width: 100%;
    height: auto;
}

.problem-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.6;
}

.problem-arrow {
    width: 30px;
    height: 20px;
    background: linear-gradient(to bottom, #d6efee, #ffffff);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 15px 0;
}

.problem-impact {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-page-section {
        padding-top: 0;
    }

    .service-content-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .service-content-desc {
        color: #333333;
        font-size: 0.9rem;
    }

    .service-content-heading {
        font-size: 1.35rem;
    }

    .accounting-badges-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 40px;
    }

    .accounting-badges-images {
        align-self: center;
    }

    .service-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-tab {
        flex: none !important; /* Override about.css specific rule if needed */
        width: 100%;
        max-width: none !important;
        height: auto;
        min-height: 64px;
        padding: 10px;
        font-size: 0.8rem;
    }

    .problems-grid {
        flex-direction: column;
    }

    .service-solution-section {
        margin-bottom: 0 !important;
    }

    .solution-triangle {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .service-features-section {
        margin-top: 0;
    }

    .features-image-wrapper {
        margin-top: -50px;
    }
}

/* Solution Section */
.service-solution-section {
    margin-top: 80px;
    text-align: center;
}

.solution-triangle {
    position: relative;
    display: inline-block;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.solution-triangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 120px;
    background: linear-gradient(to bottom, #e1f4f3, #ffffff);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: -1;
}

.solution-title {
    font-size: var(--font-lg);
    font-weight: 500;
    color: var(--primary-color);
}

.solution-subtitle {
    font-size: var(--font-md);
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 50px;
}

.solution-diagram {
    max-width: 700px;
    margin: 0 auto 80px;
}

.diagram-img {
    width: 100%;
    height: auto;
}

/* Features Section */
.service-features-section {
    margin-top: 80px;
    padding-bottom: 0px;
    margin-bottom: -100px;
}

.features-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.features-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-align: left;
}

.features-content {
    position: relative;
    padding: 60px 0;
}

.features-image-wrapper {
    position: absolute;
    top: -110px;
    left: 38%;
    right: calc(-50vw + 50%);
    height: 550px;
    border-radius: 40px 0 0 40px;
    overflow: hidden;
    z-index: 1;
}

.features-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.features-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    max-width: 1050px;
}

.feature-card {
    background-color: rgba(247, 247, 247, 0.95);
    border-radius: 20px;
    padding: 45px 40px 40px;
    box-shadow: 6px 6px 15px rgba(10, 186, 181, 0.1);
    width: 47.5%;
    /* 47.5% width to leave exactly a 5% horizontal gap */
    height: 100%;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
}

.feature-card:nth-child(2) {
    margin-top: -50px;
}

.feature-card:nth-child(3) {
    margin-top: -100px;
}


.feature-card.card-right {
    justify-self: end;
}

.feature-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Petit Formal Script', cursive;
    font-size: 60px;
    font-style: italic;
    font-weight: 200;
    color: #0ABAB5;
    line-height: 1;
    z-index: 1;
}

.feature-card-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-align: left;
}

.feature-card-desc {
    font-size: 0.85rem;
    /* Made slightly smaller than var(--font-sm) */
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 991px) {
    .service-features-section {
        display: flex;
        flex-direction: column;
        margin-bottom: 60px;
    }

    .features-content {
        display: contents;
    }

    .features-header {
        order: 2;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .features-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .features-image-wrapper {
        order: 1;
        position: relative;
        width: auto;
        margin-right: -20px;
        margin-left: 0;
        height: 300px;
        top: auto;
        left: auto;
        right: auto;
        border-radius: 24px 0 0 24px;
        margin-bottom: 0;
    }

    .features-cards {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .feature-card {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 35px 25px 25px;
    }

    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        margin-top: 0;
    }

    .feature-card.card-right {
        justify-self: stretch;
    }
}

/* Plans Section */
.service-plans-section {
    position: relative;
    z-index: 10;
    margin-top: 20px;
}

.plans-header {
    margin-bottom: 50px;
}

.plans-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 20px;
}

.plans-desc {
    font-size: var(--font-sm);
    color: var(--text-light);
    line-height: 1.8;
}

.plans-desc .nowrap-text {
    white-space: nowrap;
}

.plans-table-wrapper {
    margin-bottom: 30px;
    margin-top: 40px;
}

.plans-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.plans-table th,
.plans-table td {
    padding: 20px 10px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    vertical-align: top;
}

.plans-table th:first-child,
.plans-table td:first-child {
    border-left: none;
}

.plans-table th:last-child,
.plans-table td:last-child {
    border-right: none;
}

.plans-table thead th {
    background-color: #E6F5F4;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    border-bottom: 1px solid #ccc;
    border-top: 16px solid transparent;
    background-clip: padding-box;
    padding: 17px 15px;
    vertical-align: middle;
    box-shadow: inset 0 1px 0 #ccc;
}

/* Recommended Column Styles */
.plans-table th.col-recommended {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    border-top: none;
    box-shadow: none;
    font-size: 24px;
}

.recommended-badge {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: var(--font-sm);
    font-weight: bold;
    white-space: nowrap;
}

.col-highlight {
    background-color: #E6F5F4;
}

.row-header {
    font-weight: bold;
    vertical-align: middle !important;
    text-align: center;
    color: var(--text-color);
    width: 15%;
    background-color: #FAFAFA;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.plan-features li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-features li:last-child {
    margin-bottom: 0;
}

.price-row td {
    border-top: 1px solid #ddd;
    vertical-align: middle;
}

.price-cell {
    font-size: var(--font-sm);
    color: var(--text-color);
}

.price-number {
    font-size: var(--font-lg);
    font-weight: bold;
    margin-right: 5px;
}

.plans-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.plans-note {
    font-size: var(--font-sm);
    color: var(--primary-color);
}

.plans-btn {
    padding: 10px 75px;
    /* Adjusted horizontal padding */
    font-size: var(--font-sm);
    border-radius: 40px;
    position: relative;
}

.plans-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -55px;
    width: 100px;
    height: 1px;
    background-color: var(--text-color);
    z-index: 1;
}


@media (max-width: 991px) {
    .plans-title {
        font-size: 24px;
    }

    .plans-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .plans-desc .nowrap-text {
        white-space: normal;
        /* allow wrapping on mobile */
    }
}

@media (max-width: 768px) {
    .plans-btn {
        padding: 14px 90px;
        align-self: flex-end;
    }

    .plans-btn::before {
        left: -80px;
        width: 125px;
    }

    .plans-note {
        text-align: left;
        padding: 0 20px 0 10px;
    }

    .plans-table-wrapper {
        overflow-x: hidden; /* no horizontal scroll */
        margin-top: 30px;
    }

    .plans-table {
        display: grid;
        grid-template-columns: 1fr auto;
        border: none;
        min-width: 0;
        width: 100%;
        row-gap: 0;
    }

    .plans-table thead,
    .plans-table tbody,
    .plans-table tr {
        display: contents;
    }

    .plans-table th,
    .plans-table td {
        display: flex;
        align-items: center;
        border: none;
        padding: 0;
    }

    /* Hide row headers and empty top-left cell */
    .plans-table th:first-child,
    .plans-table td.row-header {
        display: none;
    }

    /* Common for Title Cells (th) */
    .plans-table th:not(:first-child) {
        justify-content: flex-start;
        padding: 15px 20px;
        background-color: #dcedec; /* Exact light blue from screenshot */
        font-size: 16px;
        color: var(--text-color);
        font-weight: bold;
        border-top: 1px solid #ccc;
        background-clip: border-box;
        box-shadow: none;
    }
    
    .plans-table th:not(:first-child) br {
        display: none; /* Keep title in one line */
    }

    /* Common for Price Cells */
    .plans-table .price-row td:not(:first-child) {
        justify-content: flex-end;
        padding: 15px 20px;
        background-color: #dcedec;
        color: var(--text-color);
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
    
    .plans-table .price-row td .price-number {
        font-size: 18px;
        margin-right: 2px;
    }

    /* Specific overrides for Recommended Plan (Plan 3 - Standard) */
    .plans-table th.col-recommended,
    .plans-table .price-row td.col-highlight {
        background-color: var(--primary-color);
        color: var(--white);
        padding-top: 15px; /* reset badge padding */
    }
    
    .plans-table th.col-recommended {
        flex-direction: row; /* Keep on one line */
        align-items: center;
    }
    
    .plans-table th.col-recommended .recommended-badge {
        display: none; /* Hide badge on mobile to match screenshot */
    }

    /* Features cell */
    .plans-table tbody tr:first-child td:not(:first-child) {
        grid-column: 1 / -1;
        display: block;
        padding: 0;
        background: var(--white);
        margin-bottom: 30px;
    }

    /* "対応範囲" Label */
    .plans-table tbody tr:first-child td:not(:first-child)::before {
        content: "対応範囲";
        display: block;
        background-color: #F4F6F7;
        color: var(--text-color);
        font-weight: bold;
        font-size: 13px;
        padding: 10px 20px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    /* Features List */
    .plans-table .plan-features {
        padding: 20px 20px 0 35px;
    }
    
    .plans-table .plan-features li {
        margin-bottom: 12px;
        font-size: 14px;
        text-align: left;
    }
    
    .plans-table .plan-features li br {
        display: none; /* Un-break lines on mobile features list */
    }

    /* Grid layout assignments */
    .plans-table th:nth-child(2) { grid-area: 1 / 1 / 2 / 2; }
    .plans-table .price-row td:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
    .plans-table tbody tr:first-child td:nth-child(2) { grid-area: 2 / 1 / 3 / 3; }

    .plans-table th:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
    .plans-table .price-row td:nth-child(3) { grid-area: 3 / 2 / 4 / 3; }
    .plans-table tbody tr:first-child td:nth-child(3) { grid-area: 4 / 1 / 5 / 3; }

    .plans-table th:nth-child(4) { grid-area: 5 / 1 / 6 / 2; }
    .plans-table .price-row td:nth-child(4) { grid-area: 5 / 2 / 6 / 3; }
    .plans-table tbody tr:first-child td:nth-child(4) { grid-area: 6 / 1 / 7 / 3; }

    .plans-table th:nth-child(5) { grid-area: 7 / 1 / 8 / 2; }
    .plans-table .price-row td:nth-child(5) { grid-area: 7 / 2 / 8 / 3; }
    .plans-table tbody tr:first-child td:nth-child(5) { 
        grid-area: 8 / 1 / 9 / 3; 
        margin-bottom: 0;
        border-bottom: 1px solid #ccc;
    }
}

/* =========================================
   CUSTOMER VOICE SECTION (SERVICE PAGE)
   ========================================= */
.service-cv-section {
    position: relative;
    padding: 80px 0;
    margin-bottom: 80px;
    z-index: 1;
}

.service-cv-section .cv-bg-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    /* 背景のみ画面左端までフルブリード。右はコンテナ右端の手前で角丸終端。 */
    left: calc(50% - 50vw);
    right: 5%;
    background-color: #0ABAB51A;
    border-radius: 0 40px 40px 0;
    z-index: -1;
}

.service-cv-section .cv-header {
    margin-bottom: 40px;
}

.service-cv-section .cv-title {
    color: var(--corp_green, #0ABAB5);
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 3.2px;
    margin-bottom: 5px;
}

.service-cv-section .cv-en {
    color: #05A9B4;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 60px;
    letter-spacing: 1px;
    display: block;
}

.service-cv-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.service-cv-image {
    flex: 1;
    max-width: 40%;
}

.service-cv-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 1.5;
}

.service-cv-text {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
}

.service-cv-heading {
    font-size: 20px;
    font-weight: 400;
    color: #3E3E3E;
    line-height: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-cv-company {
    font-size: 16px;
    color: #3E3E3E;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1.6px;
    margin-bottom: 30px;
}

.service-cv-desc {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-cv-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}

.service-cv-btn {
    position: relative;
    padding: 14px 80px 14px 90px;
    font-size: 0.85rem;
    margin-left: 0;
}

.service-cv-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(100% - 50px);
    width: 90px;
    height: 1px;
    background-color: var(--text-color);
    transition: background-color 0.3s ease;
}


@media (max-width: 991px) {
    .service-cv-section .cv-header {
        margin-left: 0;
    }
    .service-cv-content {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
    }

    .service-cv-image,
    .service-cv-text {
        max-width: 100%;
        width: 100%;
        min-width: 0; /* flex子要素が内容で押し広がるのを防ぐ（テキスト右はみ出し対策）。 */
    }

    .service-cv-btn-wrapper {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .service-cv-section {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    /* SPは背景を画面ほぼ全幅の角丸カードに。中のコンテンツは内側paddingで左右に余白。 */
    .service-cv-section .cv-bg-wrapper {
        left: 0;
        right: 0;
        border-radius: 24px;
    }

    /* コンテンツは背景カードの内側に余白を持たせる（写真・テキストの右はみ出し防止）。 */
    .service-cv-section .cv-header,
    .service-cv-section .service-cv-content {
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
    }

    /* 見出しはSPで他セクション（特徴 24px）と整合。本文系はデザイン固定px。 */
    .service-cv-section .cv-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .service-cv-section .cv-en {
        font-size: 16px;
        line-height: 1.6;
    }

    .service-cv-content {
        gap: 20px;
    }

    /* flex子要素が内容で押し広がるのを確実に防ぐ（本文の右はみ出し対策）。 */
    .service-cv-image,
    .service-cv-text {
        min-width: 0;
        width: 100%;
    }

    .service-cv-desc {
        overflow-wrap: anywhere;
    }

    .service-cv-image img {
        border-radius: 12px;
    }

    .service-cv-heading {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 28px;
    }

    .service-cv-company {
        font-size: 14px;
        line-height: 22px; /* 会社名と氏名の2行を近接させる（広すぎ解消）。 */
        margin-bottom: 20px;
    }

    .service-cv-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .service-cv-btn-wrapper {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .service-cv-btn {
        padding: 14px 80px;
    }
}

/* =========================================
   FAQ SECTION (SERVICE PAGE)
   ========================================= */
.service-faq-section {
    padding: 60px 0 100px;
    background-color: var(--white);
}

.faq-title {
    color: var(--corp_green, #0ABAB5);
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 3.2px;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #F8F9FA;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    background-color: #F4F6F7;
    cursor: pointer;
    position: relative;
}

.faq-q-mark {
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-right: 20px;
}

.faq-q-text {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    flex-grow: 1;
    margin: 0;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: #9cdbd8;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-icon::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 9px;
    width: 2px;
    height: 20px;
    background-color: #9cdbd8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 30px 0 70px;
    background-color: #F8F9FA;
    border-top: 2px solid transparent;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 30px 25px 70px;
    border-top: 2px solid #FFFFFF;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

/* Bottom CTA inside FAQ section */
.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.faq-cta-desc {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    display: inline-block;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .faq-question {
        padding: 20px 25px;
        align-items: flex-start;
    }

    .faq-q-mark {
        margin-right: 12px;
        line-height: 1.3;
    }

    .faq-q-text {
        text-align: left;
        line-height: 1.5;
    }

    .faq-icon {
        margin-top: 13px;
    }

    .faq-answer {
        padding: 0 25px 0 25px;
    }

    .faq-item.active .faq-answer {
        padding: 10px 25px 25px 25px;
    }

    .faq-cta {
        margin-top: 30px;
    }

    .faq-cta-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .service-faq-section {
        padding-bottom: 50px;
    }

    .faq-cta-desc {
        font-size: 1rem;
    }
}