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

:root {
    /* カラーパレット - 朝活と健康をイメージ */
    --primary-color: #FF6B35; /* エネルギッシュなオレンジ */
    --secondary-color: #004E89; /* 信頼感のある深いブルー */
    --accent-color: #F7B32B; /* 朝日のイエロー */
    --success-color: #2ECC71;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bg-gradient-morning: linear-gradient(135deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%);
    
    /* タイポグラフィ */
    --font-main: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Zen Kaku Gothic New', sans-serif;
    
    /* スペーシング */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;
    
    /* シャドウ */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* トランジション */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fff;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================
   ヒーローセクション
   ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient-morning);
    overflow: hidden;
    padding: 40px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: overlayMove 20s ease-in-out infinite;
}

@keyframes overlayMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.title-main {
    display: block;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: white;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.4s both;
}

.seminar-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.seminar-date,
.seminar-format {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.seminar-date i,
.seminar-format i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.8s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.pulse {
    animation: fadeInUp 1s ease 0.8s both, pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-note {
    margin-top: 30px;
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ========================
   セクション共通
   ======================== */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.highlight-text {
    color: var(--primary-color);
    position: relative;
}

.section-title.white .highlight-text {
    color: var(--accent-color);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================
   悩みセクション
   ======================== */
.pain-points {
    background: var(--bg-light);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pain-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pain-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================
   真実セクション
   ======================== */
.truth-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #003366 100%);
    color: white;
}

.truth-box {
    max-width: 900px;
    margin: 50px auto 0;
}

.truth-item {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.truth-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.truth-icon {
    flex-shrink: 0;
}

.truth-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.truth-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.truth-text p {
    line-height: 1.8;
    opacity: 0.95;
}

.truth-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* ========================
   効果セクション
   ======================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    position: relative;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.1);
    font-family: var(--font-accent);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================
   朝活セクション
   ======================== */
.morning-section {
    background: var(--bg-light);
}

.morning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.morning-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.morning-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.morning-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.morning-icon i {
    font-size: 1.8rem;
    color: white;
}

.morning-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.morning-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.morning-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================
   新年セクション
   ======================== */
.new-year-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.new-year-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.new-year-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.new-year-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.new-year-number {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.new-year-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-year-card p {
    line-height: 1.8;
    opacity: 0.95;
}

.new-year-card strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* ========================
   セミナー特典セクション
   ======================== */
.seminar-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.seminar-benefit-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.seminar-benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-check {
    width: 50px;
    height: 50px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-check i {
    font-size: 1.5rem;
    color: white;
}

.seminar-benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.seminar-benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================
   セミナー詳細
   ======================== */
.seminar-details {
    background: var(--bg-light);
}

.details-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto 60px;
}

.detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.detail-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--secondary-color);
}

.detail-label i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.detail-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-value small {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.free-badge {
    display: inline-block;
    background: var(--success-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
}

/* タイムライン */
.timeline-section {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    padding: 25px 0;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 30px;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-time {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================
   申し込みフォーム
   ======================== */
.apply-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #003366 100%);
    color: white;
}

.apply-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* エキスパフォーム用スタイル */
.expert-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.expert-form-wrapper iframe {
    display: block;
    margin: 0 auto;
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-note i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.apply-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.required {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
}

.optional {
    display: inline-block;
    background: var(--text-light);
    color: white;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.checkbox-group {
    margin-bottom: 40px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--text-dark);
}

.link {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-color);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.thank-you-message {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thank-you-icon i {
    font-size: 3rem;
    color: white;
}

.thank-you-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thank-you-message p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ========================
   FAQ
   ======================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question > i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question > span {
    flex: 1;
}

.faq-question > i:last-child {
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question > i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 75px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================
   最終CTA
   ======================== */
.final-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-date,
.cta-free {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.cta-date i,
.cta-free i {
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================
   フッター
   ======================== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* ========================
   アニメーション
   ======================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ========================
   レスポンシブ
   ======================== */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .sp-only {
        display: inline;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .seminar-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .pain-grid,
    .benefits-grid,
    .morning-grid,
    .new-year-grid,
    .seminar-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .details-card {
        padding: 30px 20px;
    }
    
    .apply-form {
        padding: 30px 20px;
    }
    
    .timeline {
        padding-left: 35px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: -30px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
    
    .cta-info {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .expert-form-wrapper {
        padding: 10px;
    }
    
    .expert-form-wrapper iframe {
        height: 1000px;
    }
}