/* ===================================
   リセット＆ベーススタイル
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a237e;
    --secondary-color: #d32f2f;
    --accent-color: #ff6f00;
    --success-color: #2e7d32;
    --warning-color: #f57c00;
    --text-dark: #1a1a1a;
    --text-medium: #424242;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    --gradient-accent: linear-gradient(135deg, #d32f2f 0%, #ff6f00 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* ===================================
   ヘッダーセクション（ヒーローセクション）
   =================================== */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(211, 47, 47, 0.9) 100%);
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    color: var(--bg-white);
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-headline .highlight {
    color: #ffeb3b;
    font-size: 3rem;
    text-decoration: underline;
    text-decoration-color: #ffeb3b;
    text-decoration-thickness: 4px;
}

.hero-headline .emphasis {
    display: block;
    font-size: 3.2rem;
    color: #ffffff;
    margin-top: 20px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline strong {
    color: #ffeb3b;
    font-size: 1.5rem;
}

.hero-cta {
    margin-top: 50px;
}

/* ===================================
   CTAボタン
   =================================== */
.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
}

.cta-primary {
    background: linear-gradient(135deg, #ff6f00 0%, #ffb300 100%);
    color: var(--bg-white);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ff8f00 0%, #ffc300 100%);
}

.cta-large {
    font-size: 1.5rem;
    padding: 25px 60px;
}

.cta-button i {
    margin-right: 10px;
}

.pulse {
    animation: pulse 2s infinite;
}

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

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

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

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.section-title.centered {
    text-align: center;
}

.section-title .number-highlight {
    color: var(--secondary-color);
    font-size: 3.5rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.section-subtitle.centered {
    text-align: center;
}

/* ===================================
   サブヘッドセクション
   =================================== */
.subhead-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8eaf6 100%);
    padding: 60px 0;
}

/* ===================================
   Fromセクション
   =================================== */
.from-section {
    background-color: var(--bg-white);
    padding: 40px 0;
}

.letter-style {
    background-color: #fffde7;
    border-left: 5px solid var(--accent-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.letter-header p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.letter-header strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ===================================
   問題提起セクション
   =================================== */
.problem-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.warning-text {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 3rem;
}

.mistake-list {
    max-width: 900px;
    margin: 50px auto;
}

.mistake-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.mistake-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.mistake-icon {
    flex-shrink: 0;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-right: 25px;
}

.mistake-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.warning-box {
    max-width: 900px;
    margin: 60px auto 0;
    background-color: #fff3e0;
    border: 3px solid var(--warning-color);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.warning-text-large {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   真実の告白セクション
   =================================== */
.truth-section {
    background: var(--gradient-accent);
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}

.truth-section .section-title {
    color: var(--bg-white);
    font-size: 2.8rem;
}

.truth-section .bold-title {
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.truth-statement {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 40px;
    line-height: 1.6;
}

.emphasis-red {
    color: #ffeb3b;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    font-size: 3rem;
}

/* ===================================
   コンセプトセクション
   =================================== */
.concept-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.concept-content {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-box {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    padding: 50px;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-left: 40px;
}

.quote-author {
    text-align: right;
    font-size: 1.3rem;
    color: var(--text-medium);
    font-style: italic;
}

.concept-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.highlight-text {
    background-color: #fff9c4;
    padding: 25px;
    border-left: 5px solid var(--accent-color);
    border-radius: 8px;
    font-weight: 500;
}

/* ===================================
   実績セクション
   =================================== */
.results-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    padding: 100px 0;
}

.case-study {
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.case-study-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-medium);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin: 60px 0;
}

.comparison-before h4,
.comparison-after h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-before h4 {
    color: var(--secondary-color);
}

.comparison-after h4 {
    color: var(--success-color);
}

.comparison-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.stats {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-item.bad .stat-number {
    color: var(--secondary-color);
}

.stat-item.good .stat-number {
    color: var(--success-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.comparison-arrow {
    font-size: 3rem;
    color: var(--accent-color);
    text-align: center;
}

.results-impact {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 60px 0;
}

.impact-item {
    text-align: center;
}

.impact-multiplier {
    font-size: 5rem;
    font-weight: 900;
    color: var(--success-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.impact-label {
    font-size: 1.5rem;
    color: var(--text-medium);
    font-weight: 700;
}

.case-study-conclusion {
    font-size: 1.3rem;
    text-align: center;
    margin: 40px 0;
    line-height: 1.8;
}

.highlight-box {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
}

.highlight-statement {
    font-size: 2rem;
    color: var(--bg-white);
    line-height: 1.8;
}

.brand-name {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin-top: 20px;
    color: #ffeb3b;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================
   提供価値セクション
   =================================== */
.value-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.value-statement {
    text-align: center;
    margin-bottom: 50px;
}

.emphasis-large {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.value-content {
    max-width: 1100px;
    margin: 0 auto;
}

.value-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.feature-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 2rem;
    font-weight: 900;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-title i {
    color: var(--primary-color);
    margin-right: 10px;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===================================
   オファーセクション
   =================================== */
.offer-section {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    padding: 100px 0;
}

.offer-title {
    margin-bottom: 20px;
}

.offer-name {
    display: block;
    color: var(--primary-color);
    font-size: 3rem;
    margin-top: 20px;
}

.offer-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 60px;
    line-height: 1.9;
}

.package-contents {
    max-width: 900px;
    margin: 0 auto;
}

.package-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--bg-white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.package-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.package-item.special {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff9c4 100%);
}

.package-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--bg-white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 25px;
}

.package-item.special .package-icon {
    background: var(--gradient-accent);
}

.package-detail h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.package-note {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
}

.price-logic {
    max-width: 1000px;
    margin: 80px auto 0;
}

.price-logic-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.price-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.price-card.expensive {
    border: 3px solid var(--secondary-color);
}

.price-card.reasonable {
    border: 3px solid var(--success-color);
}

.price-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    margin: 20px 0;
}

.price-card.expensive .price-amount {
    color: var(--secondary-color);
}

.price-card.reasonable .price-amount {
    color: var(--success-color);
}

.price-detail {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.price-note {
    font-size: 1rem;
    color: var(--text-light);
}

.price-note.highlight {
    color: var(--success-color);
    font-weight: 700;
}

.vs-divider {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-align: center;
}

.price-conclusion {
    font-size: 1.2rem;
    line-height: 1.9;
    text-align: center;
    color: var(--text-dark);
}

/* ===================================
   CTAセクション
   =================================== */
.cta-section {
    background: var(--gradient-accent);
    padding: 100px 0;
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.limited-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.limited-badge i {
    margin-right: 10px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.cta-title .emphasis {
    color: var(--primary-color);
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.diagnosis-includes {
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.include-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.include-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.diagnosis-note {
    font-size: 1.2rem;
    margin: 30px 0;
    color: var(--text-dark);
}

.urgency-message {
    background-color: #fff3e0;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.urgency-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.urgency-highlight {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.4rem;
}

.cta-button-container {
    margin: 50px 0;
}

.cta-question {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-dark);
}

/* ===================================
   フォームセクション
   =================================== */
.form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

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

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

.required {
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-success {
    max-width: 700px;
    margin: 0 auto;
}

.success-message {
    background-color: #e8f5e9;
    border: 3px solid var(--success-color);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
}

.success-message i {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

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

.success-message p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

/* ===================================
   PSセクション
   =================================== */
.ps-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.ps-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 20%, #fff9c4 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.ps-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.ps-content {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.ps-urgency {
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.4rem;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 40px 0;
    text-align: center;
}

.footer-text {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
    color: #bdbdbd;
}

/* ===================================
   アニメーション
   =================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===================================
   レスポンシブデザイン
   =================================== */
@media (max-width: 1024px) {
    .comparison-grid,
    .price-comparison {
        grid-template-columns: 1fr;
    }

    .comparison-arrow,
    .vs-divider {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .results-impact {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-headline .highlight {
        font-size: 2.2rem;
    }

    .hero-headline .emphasis {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

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

    .section-title .number-highlight {
        font-size: 2.5rem;
    }

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

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .cta-large {
        padding: 18px 35px;
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .ps-box,
    .cta-box {
        padding: 30px 20px;
    }

    .emphasis-large {
        font-size: 2rem;
        padding: 15px 25px;
    }

    .brand-name {
        font-size: 2.2rem;
    }

    .offer-name {
        font-size: 2rem;
    }

    .impact-multiplier {
        font-size: 3.5rem;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .truth-statement {
        font-size: 1.8rem;
    }

    .emphasis-red {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .hero-headline .emphasis {
        font-size: 2rem;
    }

    .mistake-item,
    .package-item {
        flex-direction: column;
        text-align: center;
    }

    .mistake-icon,
    .package-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .offer-name {
        font-size: 1.5rem;
    }

    .cta-button-container {
        margin: 30px 0;
    }
}