/* 不登校・ひきこもり回復プログラム ランディングページ CSS */

/* リセット・基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', '游ゴシック', 'Meiryo', sans-serif;
    line-height: 1.8;
    background: #fffef8;
    color: #444444;
    font-weight: 400;
}

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

/* ヘッダー（ファーストビュー） */
header {
    background: #f8f8f8;
    padding: 0;
    text-align: center;
    width: 100%;
    overflow: hidden; /* 画像がはみ出さないように */
}

.hero-image {
    width: 100%;
    max-width: 900px; /* パソコンでは900pxを維持 */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* セクション共通 */
.section {
    padding: 50px 0;
}

/* ファーストビュー */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px;
    background: linear-gradient(135deg, #fff8e7 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

/* 背景の手描き風装飾 */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at 30% 30%, #ffb3ba 8px, transparent 8px),
        radial-gradient(circle at 70% 70%, #bae1ff 6px, transparent 6px);
    background-size: 25px 25px, 20px 20px;
    border-radius: 50% 40% 60% 45%;
    opacity: 0.3;
    animation: float1 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: 
        radial-gradient(circle at 40% 40%, #a8e6cf 5px, transparent 5px),
        radial-gradient(circle at 60% 60%, #ffd3a5 7px, transparent 7px);
    background-size: 18px 18px, 22px 22px;
    border-radius: 40% 60% 45% 55%;
    opacity: 0.3;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

.hero-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    background: #ffffff;
    padding: 70px 50px;
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
    border: 3px solid #e0e0e0;
}

/* 悩みセクション */
.worry-section {
    margin-bottom: 50px;
    position: relative;
}

.worry-quote {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
    margin: 20px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffeef0 0%, #fff0f3 100%);
    border-left: 5px solid #ff6b8a;
    border-radius: 0 15px 15px 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 107, 138, 0.15);
    transition: all 0.4s ease;
}

.worry-quote:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(255, 107, 138, 0.25);
}

.worry-quote::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 4rem;
    color: #ff6b8a;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.parent-text {
    font-size: 1.3rem;
    color: #666;
    margin-top: 30px;
    font-weight: 400;
}

/* 解決セクション */
.solution-section {
    margin: 50px 0;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f0f8ff 0%, #f0fff0 100%);
    border-radius: 25px;
    position: relative;
}

.solution-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c5aa0;
    line-height: 1.8;
}

.solution-highlight {
    background: linear-gradient(135deg, #fff9c4 0%, #f7e98e 100%);
    padding: 8px 16px;
    border-radius: 15px;
    font-weight: 700;
    color: #8b6914;
    border: 2px solid #f7e98e;
    box-shadow: 0 3px 8px rgba(247, 233, 142, 0.4);
    display: inline-block;
    margin: 0 5px;
    transform: rotate(-1deg);
}

.solution-highlight.action {
    background: linear-gradient(135deg, #ffb3ba 0%, #ff9eb5 100%);
    color: #c0392b;
    border-color: #ff9eb5;
    box-shadow: 0 3px 8px rgba(255, 158, 181, 0.4);
    transform: rotate(1deg);
}

.checklist-highlight {
    color: #d4649b;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 5px;
}

/* プログラムセクション */
.program-section {
    margin-top: 50px;
    text-align: center;
}

.program-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.program-subtitle {
    font-size: 2.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* 共感パート */
.empathy-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #f0fff0 0%, #fff8e7 100%);
    position: relative;
}

.empathy-section::before {
    content: '🌈';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 3rem;
    opacity: 0.3;
    animation: float1 12s ease-in-out infinite;
}

.empathy-section::after {
    content: '🍀';
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: float2 14s ease-in-out infinite;
}

.empathy-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 60px;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.checklist-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.checklist-item:last-child {
    margin-bottom: 0;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 3px solid #77b89f;
    border-radius: 6px;
    margin-right: 5px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    background: #77b89f;
    transform: rotate(-5deg);
}

.custom-checkbox::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    font-size: 14px;
    color: #ffffff;
    font-weight: bold;
}

.checklist-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
}

.closing-message {
    text-align: center;
    margin-top: 60px;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px dashed #ffb3ba;
    position: relative;
}

.closing-message::before {
    content: '🌟';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.closing-text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555555;
}

.method-highlight {
    font-weight: 600;
    color: #2c5aa0;
    background: rgba(108, 158, 235, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.final-statement {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c5aa0;
}

/* 問題提起 */
.problem-section {
    background: #f9f9f9;
    padding: 50px 0;
}

.problem-content {
    font-size: 1.1rem;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.problem-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #6b4c93;
    text-align: center;
    margin-bottom: 30px;
}

.problem-highlight {
    border-bottom: 2px solid #f484bb;
}

.key-message {
    font-size: 1.2rem;
    color: #d4649b;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #fff5f8, #f0f8ff);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

/* ビフォーアフター */
.testimonials {
    background: linear-gradient(135deg, #fdf3f3 0%, #f0f8ff 100%);
}

.testimonial {
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 100%);
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #dda0dd;
    box-shadow: 0 15px 35px rgba(221,160,221,0.15);
}

.testimonial-header {
    background: linear-gradient(135deg, #b19cd9 0%, #cdbcdd 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.voice-message {
    font-size: 16px;
    font-weight: 500;
    color: #8b5a6b;
    background: linear-gradient(135deg, #fff5f8 0%, #f0f0ff 100%);
    border-left: 6px solid #dda0dd;
    padding: 15px 20px;
    margin: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(221,160,221,0.1);
}

.testimonial-photo {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff0f5 0%, #f0f8ff 100%);
    margin: 0 20px;
    border-radius: 15px;
}

.customer-photo {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    padding: 30px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.before, .after {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.before {
    background: linear-gradient(135deg, #ffe6e6 0%, #fff0f0 100%);
    border-left: 6px solid #ffb6c1;
}

.after {
    background: linear-gradient(135deg, #e6ffe6 0%, #f0fff0 100%);
    border-left: 6px solid #98fb98;
}

.voice-heading {
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0 10px;
    padding: 8px 15px;
    border-radius: 10px;
}

.voice-heading.before {
    background: linear-gradient(135deg, #ffcccb 0%, #ffe4e1 100%);
    color: #8b4c57;
}

.voice-heading.after {
    background: linear-gradient(135deg, #98fb98 0%, #e6ffe6 100%);
    color: #2c5530;
}

.lp-list {
    padding-left: 1.5em !important;
    margin: 1em 0 !important;
}

.lp-list > li {
    list-style-type: disc !important;
    margin: 0.3em 0;
    line-height: 1.6;
    color: #5a5a5a;
}

/* プログラム紹介 */
.program {
    background: linear-gradient(135deg, #e1f5fe 0%, #f3e5f5 50%, #fff0f5 100%);
}

.program-content {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(177,156,217,0.2);
    border: 2px solid rgba(221,160,221,0.3);
}

.program-intro-main {
    margin-bottom: 30px;
}

.program-intro-main h3 {
    font-size: 1.3rem;
    color: #8b5a6b;
    margin-bottom: 15px;
}

.program-intro-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.program-features {
    margin: 30px 0;
}

.program-features h3 {
    margin-bottom: 20px;
    color: #8b5a6b;
    text-align: center;
    font-size: 1.2rem;
}

.feature-section {
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 100%);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    border-left: 6px solid #b19cd9;
    box-shadow: 0 5px 15px rgba(177,156,217,0.1);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #8b5a6b;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 1rem;
    color: #6a6a6a;
    margin-bottom: 8px;
    line-height: 1.7;
}

.feature-benefit {
    font-size: 0.9rem;
    color: #4a7c59;
    font-weight: bold;
}

.program-summary {
    background: linear-gradient(135deg, rgba(139,90,107,0.1) 0%, rgba(177,156,217,0.1) 100%);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid #dda0dd;
    box-shadow: 0 10px 25px rgba(221,160,221,0.1);
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.summary-cta {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b5a6b;
    margin-bottom: 10px;
}

.program-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
    border: 3px dashed #b19cd9;
    text-align: center;
    box-shadow: 0 10px 25px rgba(177,156,217,0.1);
}

.program-cta h3 {
    margin-bottom: 20px;
    color: #8b5a6b;
    font-size: 1.2rem;
}

.program-details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
}

.detail-label {
    font-weight: bold;
    width: 80px;
    color: #8b5a6b;
    text-align: left;
}

.detail-value {
    flex: 1;
    text-align: left;
}

.price-highlight {
    font-size: 1.5rem;
    color: #d63384;
    font-weight: bold;
}

.program-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #fefefe 0%, #f5f7fa 100%);
}

.faq-item {
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 100%);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #dda0dd;
    box-shadow: 0 8px 20px rgba(221,160,221,0.1);
}

.faq-question {
    background: linear-gradient(135deg, #b19cd9 0%, #cbd 100%);
    color: white;
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #9b5a6b 0%, #c19cd9 100%);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    line-height: 1.8;
    color: #5a5a5a;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #fff8e7 0%, #fff8e7 100%);
    color: #4a4a4a;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(152,251,152,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(245,245,220,0.3) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: #37703d;
}

.cta-main-buttons {
    margin-bottom: 50px;
}

.cta-button {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.cta-primary {
    background: linear-gradient(135deg, #4f8c61 0%, #4cb56b 100%);
    color: white;
    border: 3px solid #57a16d;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44,85,48,0.3);
    background: linear-gradient(135deg, #37703d 0%, #4f8c61 100%);
}

.cta-alternative {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed rgba(44,85,48,0.3);
}

.cta-alternative-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-sub-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cta-line {
    background: linear-gradient(135deg, #00c300 0%, #06c755 100%);
    color: white;
    border: 3px solid #00c300;
    position: relative;
}

.cta-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6,199,85,0.4);
    background: linear-gradient(135deg, #06c755 0%, #00b300 100%);
}

.cta-phone {
    background: linear-gradient(135deg, #ff8c69 0%, #ff7f50 100%);
    color: white;
    border: 3px solid #ff8c69;
}

.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,140,105,0.4);
    background: linear-gradient(135deg, #ff7f50 0%, #ff6347 100%);
}

.cta-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 1.2rem;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(74,74,74,0.8);
    line-height: 1.6;
    margin-top: 15px;
}

.cta-note small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #fce4e4 0%, #e3e3e3 50%, #FFF5F7 100%);
    color: #4a4a4a;
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #2c3e50;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    opacity: 1;
    color: #34495e;
}

.footer-copyright {
    opacity: 0.8;
    color: #5a5a5a;
    font-size: 0.8rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    header {
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%; /* タブレットサイズでは画面幅に合わせる */
        height: auto;
    }

    .hero-section {
        padding: 20px 20px;
    }
    
    .hero-content {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .empathy-section {
        padding: 80px 20px;
    }
    
    .empathy-section::before,
    .empathy-section::after {
        display: none;
    }
    
    .worry-quote {
        font-size: 1.2rem;
        padding: 20px 25px;
        margin: 20px 0;
    }
    
    .worry-quote::before {
        font-size: 3rem;
        width: 50px;
        height: 50px;
        left: -15px;
    }
    
    .parent-text {
        font-size: 1.3rem;
        margin-top: 30px;
    }
    
    .solution-section {
        padding: 30px 20px;
    }
    
    .solution-text {
        font-size: 1.4rem;
    }
    
    .program-title {
        font-size: 1.9rem;
    }
    
    .program-subtitle {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .checklist-container {
        padding: 40px 25px;
    }
    
    .checklist-item {
        padding: 0;
        margin-bottom: 20px;
    }
    
    .checklist-text {
        font-size: 1.1rem;
    }
    
    .closing-message {
        padding: 40px 25px;
        margin-top: 50px;
    }
    
    .closing-text {
        font-size: 1.2rem;
    }
    
    .final-statement {
        font-size: 1.4rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-main-buttons {
        margin-bottom: 40px;
    }
    
    .cta-main-buttons .cta-button {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }
    
    .cta-sub-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-sub-buttons .cta-button {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
    }
    
    .cta-alternative {
        margin-top: 35px;
        padding-top: 25px;
    }
    
    .cta-note {
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    .program-content {
        padding: 25px;
    }
    
    .feature-section {
        padding: 15px;
    }
    
    .program-summary,
    .program-cta {
        padding: 20px;
    }
    
    .testimonial-photo {
        margin: 0 10px;
    }
    
    .customer-photo {
        width: 300px;
        height: 200px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .detail-label {
        width: auto;
        margin-bottom: 5px;
    }
}



@media (max-width: 480px) {
    header {
        padding: 0;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%; /* スマホサイズでは画面幅に合わせる */
        height: auto;
        object-fit: contain; /* スマホでは画像全体が見えるように */
        max-height: 50vh; /* 画面の高さの50%を上限に */
    }

    .hero-section {
        padding: 15px 15px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .empathy-section {
        padding: 60px 15px;
    }

    .worry-quote {
        font-size: 1.1rem;
        padding: 18px 20px;
        margin: 20px 0;
    }

    .solution-text {
        font-size: 1.3rem;
    }

    .program-title {
        font-size: 1.7rem;
    }

    .program-subtitle {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .checklist-card {
        padding: 18px 12px;
    }

    .checklist-text {
        font-size: 1.1rem;
    }

    .closing-text {
        font-size: 1.1rem;
    }

    .final-statement {
        font-size: 1.3rem;
    }

    .solution-highlight {
        padding: 4px 10px;
        font-size: 1.1rem;
        margin: 0 3px;
    }

    .checklist-highlight {
        color: #d4649b;
        font-weight: 700;
        font-size: 1.0rem;
        padding: 0 4px;
    }
}
