/* 住まいの相談窓口ページ専用CSS */

/* 共通スタイル */
.consultation-page {
    font-family: 'Noto Sans JP', sans-serif;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ページタイトルセクション */
.page-hero {
    background-color: #fff;
    padding: 120px 0 80px;
    margin-top: 90px;
    border-bottom: 1px solid #B3B3B3;
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.page-hero-content {
    text-align: left;
}

.page-hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1;
}

.page-hero-title .accent-c {
    color: #29a9b8;
}

.page-hero-subtitle {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    letter-spacing: 1px;
}

.page-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* イントロセクション（白背景） */
.intro-white {
    background-color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.intro-highlight {
    font-size: 20px;
    color: #29a9b8;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-highlight span {
    color: #333;
}

.intro-description {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}

/* メインコンサルテーションセクション */
.consultation-main {
    background-image: url('../../images/consultation/message-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 106%;
    background-position: center;
    padding: 316px 0;
    position: relative;
    overflow: hidden;
}

.consultation-main::before,
.consultation-main::after {
    display: none;
}

.consultation-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.consultation-text {
    color: #fff;
    position: relative;
}

.consultation-title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
    border-top: none !important;
    border-bottom-color: #fff;
}

.consultation-bg-text {
    position: absolute;
    top: 10%;
    left: -30%;
    transform: translateY(-50%);
    font-size: 140px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: 4px;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.consultation-subtitle {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.highlight-text {
    font-size: 35px;
}

.consultation-description {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.consultation-image {
    /* border-radius: 20px; */
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}



/* お悩みセクション */
.troubles-intro {
    background-color: #fff;
    padding: 0px 0 60px;
    text-align: center;
    margin-top: -50px;
}

.section-title-center {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title-center::after {
    display: none;
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #29a9b8; */
}

/* お悩みカードセクション */
.troubles-cards {
    background-color: #fff;
    padding: 0 0 80px;
}

.troubles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.trouble-card {
    background: #fff;
    border: 2px solid #555;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trouble-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trouble-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.trouble-text {
    font-size: 19px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}

.trouble-highlight {
    font-weight: 700;
    border-bottom: 2px solid #29a9b8;
    padding-bottom: 4px;
    text-decoration: none;
}

.troubles-arrow {
    width: 2px;
    height: 60px;
    background: #29a9b8;
    margin: 40px auto 0;
}

/* レビューセクション */
/* レビューセクション */
.review-section {
    background: linear-gradient(135deg, #ffffff 0%, #29a9b8 55%);
    padding: 80px 0;
    color: #333;
}

.review-section .section-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.review-header {
    margin-bottom: 0;
    flex: 0 0 300px;
}

.review-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1px;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: left;
    border: none !important;
    line-height: normal;
}

.review-subtitle {
    font-size: 17px;
    opacity: 0.8;
    text-align: left;
    color: #fff;
    font-weight: 400;
}

.review-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    color: #333;
    box-shadow: none;
    text-align: left;
}

.review-card:hover {
    transform: none;
}

.review-avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    margin: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-content {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 10px;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.review-text {
    font-size: 18px;
    line-height: 1.8;
    padding-top: 10px;
    border-top: 1px solid #b3b3b3;
    color: #333;
}

/* できることセクション */
.services-section {
    background-color: #fff;
    padding: 80px 0;
}

.services-main-title {
    font-size: 30px;
    color: #333;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    border-top: none !important;
    border-bottom: none;
}

.services-main-title::after {
    display: none;
    /* content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #29a9b8; */
}

.services-intro {
    text-align: center;
    margin: 0 0 60px;
    line-height: 2;
    font-weight: 500;
}

.services-intro p {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.text-highlight {
    font-weight: 700;
    color: #29a9b8;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: flex-start;
    margin-top: 60px;
}

.services-image {
    /* border-radius: 20px; */
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.services-list {}

.services-subtitle {
    font-size: 25px;
    color: #333;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 1px solid #333 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-items: center;
}

.service-badge {
    background: linear-gradient(135deg, #fff 0%, #29a9b8 55%);
    border-radius: 50%;
    width: 204px;
    height: 204px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #fff;
    text-align: center;
}


.service-badge p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.badge-note {
    font-size: 10px;
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

/* 特徴メインセクション */
/* 特徴メインセクション */
.features-main-section {
    background-color: #fff;
    padding: 80px 0 0;
}

@media (max-width: 600px) {
    .features-main-section {
        padding-top: 0;
    }
}

.features-main-section .section-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}


.features-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

@media (max-width: 780px) {
    .features-header {
        margin-bottom: 20px;
    }
}


.features-main-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
    border-top: none !important;
}

.features-main-title .accent-f {
    color: #29a9b8;
}

.features-subtitle {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.feature-item {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    border-radius: 60px 60px 0 0;
    position: relative;
    z-index: 1;
}

.feature-item:not(:first-child) {
    margin-top: -60px;
}

.feature-item:not(:last-child) {
    padding-bottom: 60px;
}

.feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    height: 100%;
}

/* Removed stacking logic as cards are now separate */

.feature-white {
    background-color: #f9f9f9;
}

.feature-gray {
    background-color: #dcdcdc;
}

.feature-dark {
    background-color: #4d4d4d;
    color: #fff;
}

.feature-dark .feature-content {
    color: #fff;
}

.feature-dark .feature-title {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.feature-dark .feature-content p {
    color: #fff;
}

.feature-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
    padding: 65px 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Overwrite specific border radius if needed */
.feature-item .feature-image img {
    border-radius: 10px;
}

.feature-content {
    padding: 50px 60px;
    max-width: 100%;
    margin: 0;
}

.feature-title {
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #999;
    display: inline-block;
}

.feature-content p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.flow-header {
    text-align: left;
    margin-bottom: 60px;
}

.flow-main-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
    border-top: none;
    border-bottom: none;
}

.flow-main-title .accent-f {
    color: #29a9b8;
}

.flow-subtitle {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.flow-step-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #f5f5f5;
    border-radius: 10px;
    position: relative;
    padding-right: 97px;
}

.flow-step-image-wrapper {
    position: relative;
    flex: 0 0 320px;
    width: 320px;
    top: 40px;
    left: 40px;
    margin-right: 47px;
}

.flow-number {
    position: absolute;
    top: -55px;
    left: -20px;
    font-size: 80px;
    font-weight: 600;
    color: #29a9b8;
    line-height: 1;
    font-style: italic;
    z-index: 2;
}

.flow-step-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.flow-step-content {
    flex: 1;
    text-align: left;
}

.flow-step-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333 !important;
}

.flow-step-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.flow-connector {
    width: 1px;
    height: 100px;
    background: #333;
    margin-left: 210px;
    /* 50px padding + (320px / 2) = 210px */
}

/* セクション共通スタイル */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    display: none;
    /* content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #29a9b8 0%, #44A08D 100%); */
}

.section-title p {
    color: #666;
    font-size: 16px;
    margin-top: 20px;
}

/* 特徴セクション */
.features {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #29a9b8;
}

.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* 相談の流れ */
.flow {
    background-color: #fff;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.flow-step {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #29a9b8;
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* 未決定でもOKセクション */
.undecided-ok-section {
    background-color: #f8f8f8;
    padding: 100px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.undecided-icon {
    margin: 0 auto 30px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.undecided-highlight {
    font-size: 28px;
    color: #29a9b8;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.undecided-reassurance {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
}

.undecided-message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
}

.undecided-message .highlight-step {
    color: #29a9b8;
    font-weight: 700;
    font-size: 20px;
}

.cityscape-illustration {
    max-width: 900px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

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

.btn-undecided {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #333;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-undecided:hover {
    background-color: #29a9b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.btn-undecided .arrow-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-undecided:hover .arrow-icon {
    transform: translateX(5px);
}

/* Development CTA Section */
.development-cta {
    padding: 100px 0 80px;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
    /* Ensure city image at bottom fits */
}

@media (max-width: 768px) {
    .development-cta {
        padding-top: 50px;
    }
}

.cta-decoration-spark {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.cta-headline-v2 {
    font-size: 25px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.5;
    border: none !important;
}

.cta-subheadline-v2 {
    font-size: 25px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.6;
}

.highlight-q {
    color: #29a9b8;
    font-weight: 700;
    font-size: 25px;
}

.cta-button-wrapper {
    margin-bottom: 30px;
}

.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    border: 1px solid #333;
    color: #fff;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 33px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 20px;
}

.btn-cta-dark:hover {
    background-color: #fff;
    color: #333;
}

.btn-cta-dark .arrow {
    font-family: sans-serif;
}

.cta-bottom-text {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    margin-bottom: 100px;
}

.cta-city-image {
    max-width: 1100px;
    margin: -30px auto 0;
    /* Align with bottom */
    width: 100%;
    position: relative;
    z-index: 1;
}

.cta-city-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* レスポンシブ対応 - 未決定でもOKセクション */
@media (max-width: 768px) {
    .undecided-ok-section {
        padding: 60px 20px 50px;
    }

    .undecided-icon svg {
        width: 60px;
        height: 60px;
    }

    .undecided-highlight {
        font-size: 20px;
        line-height: 1.7;
    }

    .undecided-reassurance {
        font-size: 18px;
    }

    .undecided-message {
        font-size: 16px;
    }

    .undecided-message .highlight-step {
        font-size: 18px;
    }

    .cityscape-illustration {
        margin-bottom: 40px;
    }

    .btn-undecided {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .consultation-main {
        background-image: none;
        background: linear-gradient(135deg, #fff 0%, #29a9b8 55%);
        padding: 50px;
    }

    .page-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultation-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultation-bg-text {
        font-size: 60px;
    }

    .troubles-intro {
        margin-top: initial;
    }

    .troubles-grid {
        grid-template-columns: 1fr;
    }

    .review-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-section .section-container {
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
        background: linear-gradient(135deg, #ffffff 0%, #29a9b8 29%);

    }

    .review-header {
        flex: none;
        text-align: center;
        margin-bottom: 40px;
    }

    .review-cards {
        grid-template-columns: 1fr;
    }

    .review-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .review-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .flow-step-card {
        grid-template-columns: 80px 1fr;
        gap: 30px;
    }

    .flow-step-image {
        grid-column: 1 / -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero-title {
        font-size: 48px;
    }

    .page-hero-subtitle {
        font-size: 18px;
    }

    .intro-white {
        padding: 60px 0 40px;
    }

    .intro-highlight {
        font-size: 18px;
    }

    .intro-description {
        font-size: 16px;
    }

    .consultation-main {
        padding: 60px 0 80px;
    }

    .consultation-title {
        font-size: 24px;
    }

    .consultation-subtitle {
        font-size: 20px;
    }

    .highlight-text {
        font-size: 24px;
    }

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

    .consultation-bg-text {
        font-size: 40px;
    }

    .troubles-intro {
        padding: 80px 0 40px;
    }

    .section-title-center {
        font-size: 28px;
    }



    .review-title {
        font-size: 48px;
    }

    .review-subtitle {
        font-size: 16px;
    }

    .services-main-title {
        font-size: 28px;
    }

    .services-intro p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-badge {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .service-badge p {
        font-size: 24px;
    }

    .badge-note {
        font-size: 16px;
    }

    .features-main-title {
        font-size: 48px;
        margin-bottom: 0;
    }

    /* Features Section Responsive */
    .feature-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px 20px;
    }

    .feature-item {
        border-radius: 0;
        margin-bottom: 0;
    }

    .feature-item:not(:first-child) {
        margin-top: 0;
    }

    .feature-item:not(:last-child) {
        padding-bottom: 0;
    }

    .feature-image {
        padding: 0;
        height: 300px;
    }

    .feature-image img {
        height: 100%;
        border-radius: 0;
    }

    .feature-content {
        padding: 40px 20px;
        text-align: center;
    }

    .feature-title {
        font-size: 22px;
        width: auto;
        display: inline-block;
    }

    .feature-content p {
        font-size: 14px;
    }

    .flow-main-title {
        font-size: 48px;
        margin-bottom: 0;
    }

    .flow-subtitle {
        font-size: 16px;
    }

    .flow-step-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .flow-step-image-wrapper {
        flex: none;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 20px;
        top: initial;
        left: initial;
    }

    .flow-step-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .flow-number {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .flow-connector {
        display: none;
        /* Hide connector on mobile */
    }

    .flow-step-content {
        text-align: left;
        /* Keep text readable */
        width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .btn-cta-dark {
        font-size: 22px;
    }
}