body > header {
    padding: 40px 0 !important;  /* 上下40pxのパディング */
}

/* ロゴの位置調整 */
body > header .logo {
    margin-top: -3px !important;  /* 上に移動（負の値） */
    margin-left: 10px !important;
}

/* ナビゲーションの位置調整 */
body > header .header-nav {
    margin-right: 10px !important;
    margin-top: -9px !important;  /* 上に移動（負の値） */
}

/* 共通スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #968242, #d4c075);
}

ul,li {
    list-style: none;
}

img {
    max-width: 100%;
}

.br_sp {
    display: none;
}

@media (max-width: 768px) {
    .br_sp {
        display: block;
    }
}

/* ヒーローセクション */
.service-hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%); */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    perspective: 2000px;
}

.hero-sections-wrapper {
    position: relative;
    overflow: hidden;
}

.cube-wrapper {
    position: absolute;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: -1;
}

.cube {
    position: relative;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid;
    border-color: rgba(9, 22, 58, 0.2);
    backface-visibility: visible;
}

/* 立方体の各面の位置を正確に調整 */
.cube-face:nth-child(1) { transform: translateZ(calc(50% - 1px)); }
.cube-face:nth-child(2) { transform: translateZ(calc(-50% + 1px)) rotateY(180deg); }
.cube-face:nth-child(3) { transform: translateX(calc(50% - 1px)) rotateY(90deg); }
.cube-face:nth-child(4) { transform: translateX(calc(-50% + 1px)) rotateY(-90deg); }
.cube-face:nth-child(5) { transform: translateY(calc(-50% + 1px)) rotateX(90deg); }
.cube-face:nth-child(6) { transform: translateY(calc(50% - 1px)) rotateX(-90deg); }

@keyframes rotate {
    from {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    to {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.service-hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 30px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.service-hero-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #09163a;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.service-hero-content h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #968242;
}

.overview-content strong {
    color: #968242;
    font-weight: 600;
}

.service-hero-content p {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 15px;
    color: #555;
}

/* サービス概要セクション */
.service-overview {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.service-overview .container {
    max-width: 900px;
}

.service-overview h2 {
    color: #09163a;
    font-size: 32px;
    margin-bottom: 40px;
}

.service-overview p {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    margin-bottom: 20px;
}

.overview-image {
    max-width: 600px;
    margin: 40px auto 0;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-text {
    text-align: center;
    margin-top: 24px;
}

/* 統計データの強調表示 */
.stats-highlight {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-highlight-inner {
    /* max-width: 600px; */
    margin: 0 auto;
}

.stats-highlight p {
    font-size: 22px;
    color: #09163a;
    margin-bottom: 30px;
    font-weight: 500;
}

.stats-percentage {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.stats-number {
    font-size: 90px;
    font-weight: 800;
    color: #968242;
    line-height: 1;
    position: relative;
}

.stats-number::after {
    content: "%";
    font-size: 40px;
    position: absolute;
    top: 15px;
    right: -40px;
}

.stats-label {
    font-size: 24px;
    color: #09163a;
    font-weight: bold;
    text-align: left;
    margin-left: 50px;
    max-width: 200px;
    line-height: 1.4;
}

.stats-highlight-note {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    color: #09163a;
    position: relative;
    display: inline-block;
}

.stats-highlight-note::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #968242;
}

@media (max-width: 768px) {
    .stats-highlight {
        padding: 30px 20px;
    }
    
    .stats-percentage {
        flex-direction: column;
    }
    
    .stats-number {
        font-size: 70px;
        margin-bottom: 10px;
    }
    
    .stats-number::after {
        font-size: 30px;
        top: 10px;
        right: -30px;
    }
    
    .stats-label {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .stats-highlight-note {
        font-size: 18px;
    }
}

/* お困りごとセクション */
.service-problems {
    background: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 0;
}

.service-problems .container {
    max-width: 900px;
}

.service-problems h2 {
    color: #09163a;
    font-size: 32px;
    margin-bottom: 50px;
}

.problem-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #968242;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

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

.service-problems li {
    font-size: 17px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.service-problems li::before {
    content: "✓";
    color: #968242;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    font-weight: bold;
}

/* サービス内容セクション */
.service-details {
    background: #fff;
    padding: 100px 0 80px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-detail-image {
    flex: 0 0 340px;
    text-align: center;
    animation: fadeInLeft 1s;
}

.service-detail-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(150,130,66,0.10);
    background: #f8f9fa;
    padding: 16px;
}

.service-detail-text {
    flex: 1;
    min-width: 280px;
    animation: fadeInRight 1s;
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-point {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 22px 28px;
    box-shadow: 0 2px 12px rgba(150,130,66,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.service-point:hover {
    box-shadow: 0 8px 32px rgba(150,130,66,0.13);
    transform: translateY(-3px) scale(1.02);
}

.point-icon {
    color: #968242;
    font-size: 32px;
    margin-right: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-text {
    font-size: 18px;
    color: #09163a;
    font-weight: 500;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .service-detail-content {
        flex-direction: column;
        gap: 36px;
    }
    .service-detail-image {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .service-details {
        padding: 60px 0 40px 0;
    }
    .service-detail-image img {
        max-width: 90vw;
        padding: 8px;
    }
    .service-point {
        padding: 16px 12px;
    }
    .point-icon {
        font-size: 26px;
        margin-right: 10px;
    }
    .point-text {
        font-size: 16px;
    }
}

/* アニメーション例（任意） */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px);}
    to { opacity: 1; transform: none;}
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px);}
    to { opacity: 1; transform: none;}
}



.service-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #968242;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.service-item p {
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
}

.service-cases {
    background: #f8f9fa;
    padding: 80px 0;
}

.cases-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.case {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    border-left: 6px solid #968242;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.case:hover {
    box-shadow: 0 16px 48px rgba(150,130,66,0.15);
    transform: translateY(-6px) scale(1.02);
}

.case-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    gap: 18px;
}

.case-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-right: 18px;
    width: 50%;
}

.case-avatar img:first-child {
    /* width: 64px;
    height: 64px; */
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #968242;
    box-shadow: 0 2px 8px rgba(150,130,66,0.08);
}

.case-avatar img:last-child {
    /* width: 64px;
    height: 48px; */
    object-fit: cover;
    border-radius: 8px;
    /* filter: blur(2px) grayscale(0.2) brightness(0.95); */
    border: 1.5px solid #e0e0e0;
    margin-top: 4px;
}

.case-header h3 {
    font-size: 18px;
    color: #09163a;
    font-weight: 600;
    margin: 0;
}

.case-content {
    margin-top: 10px;
}

.case-quote {
    background: #f5f7fa;
    border-radius: 18px;
    padding: 18px 20px;
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(150,130,66,0.04);
}

.case-quote i {
    color: #968242;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.case-quote:after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -16px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-top: 10px solid #f5f7fa;
}

.case-result {
    margin-top: 16px;
    margin-bottom: 16px;
}

.result-badge {
    display: inline-block;
    background: #968242;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 16px;
    padding: 4px 16px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(150,130,66,0.10);
}

.case-result p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.result-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-points li {
    font-size: 15px;
    color: #09163a;
    margin-bottom: 8px;
    padding-left: 1.6em;
    position: relative;
}

.result-points li i {
    color: #968242;
    margin-right: 6px;
    font-size: 1em;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 2px;
}

@media (max-width: 768px) {
    .cases-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .case {
        padding: 22px 10px;
    }
    .case-avatar img:first-child,
    .case-avatar img:last-child {
        /* width: 48px;
        height: 48px; */
    }
}







/* サービスフロー */
/* タイムライン全体 */
.flow-timeline {
    position: relative;
    margin: 60px auto 0 auto;
    max-width: 800px;
    padding-left: 30px;
}

.flow-timeline:before {
    content: '';
    content: none;
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #968242 0%, #09163a 100%);
    border-radius: 2px;
    z-index: 0;
}

/* 各ステップ */
.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.flow-step:last-child {
    margin-bottom: 0;
}

/* ステップ番号（円形） */
.step-number {
    /* flex: 0 0 80px; */
    width: 80px;
    height: 80px;
    background: #fff;
    border: 4px solid #968242;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #09163a;
    position: relative;
    margin-right: 32px;
    box-shadow: 0 5px 20px rgba(150,130,66,0.10);
    transition: background 0.3s, color 0.3s, border 0.3s;
}

.flow-step:hover .step-number {
    background: #968242;
    color: #fff;
    border-color: #968242;
}

/* ステップ内容 */
.step-content {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 28px 32px 28px 32px;
    box-shadow: 0 2px 12px rgba(150,130,66,0.06);
    position: relative;
    flex: 1;
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 5px solid #09163a;
}

.flow-step:hover .step-content {
    box-shadow: 0 8px 32px rgba(150,130,66,0.13);
    transform: translateY(-3px) scale(1.02);
    border-left-color: #968242;
}

.step-content h3 {
    color: #09163a;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.step-content h3:after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #968242;
    margin-top: 6px;
    border-radius: 2px;
}

.step-content p {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.step-icon {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 32px;
    color: #968242;
    opacity: 0.15;
    transition: opacity 0.3s, color 0.3s;
}

.flow-step:hover .step-icon {
    opacity: 0.7;
    color: #968242;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
    .flow-timeline {
        padding-left: 0;
    }
    .flow-timeline:before {
        left: 20px;
    }
    .flow-step {
        flex-direction: column;
        align-items: flex-start;
    }
    .step-number {
        margin-bottom: 10px;
        margin-right: 0;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .step-content {
        padding: 20px 16px 20px 16px;
    }
    .step-icon {
        right: 12px;
        bottom: 12px;
        font-size: 24px;
    }
}



















/* メリットセクション */
.service-benefits {
    background: #f7fafd;
    padding: 60px 0;
  }
  
  .benefits-wrapper {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .benefit-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 36px 28px 28px 28px;
    width: 320px;
    text-align: center;
    border: 2px solid #e3eaf3;
    transition: none; /* hoverエフェクト無効 */
  }
  
  .benefit-icon {
    background: linear-gradient(135deg, #4fc3f7 0%, #1976d2 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(33,150,243,0.12);
  }
  
  .benefit-card h3 {
    font-size: 1.25rem;
    margin: 12px 0 10px 0;
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 0.02em;
  }
  
  .benefit-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
  }


/* 料金プランセクション改善 */
.service-pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    width: 300px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.recommended {
    border: 2px solid #968242;
    box-shadow: 0 10px 40px rgba(150, 130, 66, 0.2);
}

.pricing-card.recommended:before {
    content: "おすすめ";
    position: absolute;
    top: -15px;
    right: 20px;
    background: #968242;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.pricing-card h3 {
    color: #09163a;
    font-size: 24px;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: bold;
    color: #968242;
    margin-bottom: 5px;
}

.pricing-card .price-period {
    color: #888;
    font-size: 16px;
    margin-bottom: 30px;
    display: block;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li:before {
    content: "✓";
    color: #968242;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card .pricing-button {
    display: inline-block;
    padding: 12px 30px;
    background: #09163a;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pricing-card .pricing-button:hover {
    background: #968242;
    transform: translateY(-3px);
}

.pricing-card.recommended .pricing-button {
    background: #968242;
}

.pricing-card.recommended .pricing-button:hover {
    background: #b29c5a;
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
}


/* CTAセクション */
.service-cta {
    background: linear-gradient(135deg, #09163a 0%, #0d2057 100%);
    padding: 80px 0;
    text-align: center;
}

.service-cta h2 {
    color: #fff;
    margin-bottom: 30px;
}

.service-cta p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #968242;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(150, 130, 66, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-cta .cta-button:hover {
    background: #b29c5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(150, 130, 66, 0.5);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    
    body > header .logo {
        max-width: 150px;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }
    
    body > header {
        padding: 20px 0 !important;
        position: relative;
        z-index: 100;
    }
    
    .menu-toggle {
        display: block;
        position: relative;
        width: 30px;
        height: 25px;
        margin-right: 15px;
        cursor: pointer;
        z-index: 1000;
    }
    
    .menu-toggle span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: .4s;
    }
    
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 11px; }
    .menu-toggle span:nth-child(3) { bottom: 0; }
    
    .menu-toggle.active span {
        background-color: #fff;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
    
    .header-nav ul {
        display: none;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(9, 22, 58, 0.95);
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
    
    .mobile-nav a {
        color: white;
        font-size: 18px;
        text-decoration: none;
        display: block;
        padding: 10px 0;
        text-align: center;
        transition: all 0.3s;
    }
    
    .mobile-nav a:hover {
        color: #968242;
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .mobile-nav li {
        margin: 10px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-hero {
        height: 350px;
    }
    
    .service-hero-content {
        padding: 20px;
    }
    
    .service-hero-content h1 {
        font-size: 28px;
    }
    
    .service-hero-content p {
        font-size: 16px;
    }
    
    h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .service-overview,
    .service-problems,
    .service-details,
    .service-cases,
    .service-flow,
    .service-benefits {
        padding: 60px 0;
    }
    
    .service-cases .case {
        margin-bottom: 30px;
    }
    
    .service-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .service-benefits li {
        margin-bottom: 20px;
    }
    
    .service-cta .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .service-details-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .service-hero-content {
        max-width: 90%;
    }
}