/* ========================================
   SAP研修ページ専用スタイル
   サイト全体のデザインシステムに統一
======================================== */

/* ヒーローセクション */
.training-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    overflow: hidden;
    padding: 120px 0 80px;
}

.training-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.training-hero .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.training-hero .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.training-hero .shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-color));
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.training-hero .shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-light));
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

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

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* サービス概要 */
.training-overview {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 30px;
    color: var(--text-secondary);
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%234A90E2;stop-opacity:1' /%3E%3Cstop offset='100%25' style='stop-color:%236FCF97;stop-opacity:1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='url(%23grad)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.service-features i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* 研修環境レンタル */
.training-environment {
    padding: 100px 0;
    background: white;
}

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

.environment-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

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

.environment-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(111, 207, 151, 0.05) 100%);
    box-shadow: var(--shadow-md);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-badge.popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.environment-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price {
    margin: 30px 0;
    text-align: left;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    font-size: 18px;
    color: var(--text-secondary);
}

.environment-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.environment-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.environment-features li:last-child {
    border-bottom: none;
}

.environment-features i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.environment-benefits {
    margin-top: 80px;
    text-align: center;
}

.environment-benefits h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-primary);
}

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

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

.benefit-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* コースカテゴリ */
.course-categories {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.category-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.category-header i {
    font-size: 36px;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.category-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.course-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-left: 3px solid var(--border-color);
    padding-left: 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.course-list li:hover {
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    padding-left: 24px;
}

.category-link {
    display: inline-block;
    padding: 10px 24px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.category-link i {
    display: none;
}

/* 学習パス */
.learning-paths {
    padding: 100px 0;
    background: white;
}

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

.path-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

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

.path-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(111, 207, 151, 0.05) 100%);
}

.path-level {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.path-level.beginner {
    background: #dcfce7;
    color: #15803d;
}

.path-level.intermediate {
    background: #dbeafe;
    color: #1e40af;
}

.path-level.advanced {
    background: #fae8ff;
    color: #a21caf;
}

.path-level.expert {
    background: #fef3c7;
    color: #a16207;
}

.path-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.path-duration {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.path-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.path-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.path-steps li {
    padding: 10px 0 10px 40px;
    color: var(--text-secondary);
    position: relative;
    counter-increment: step-counter;
}

.path-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 8px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.path-outcome ul {
    list-style: none;
    padding: 0;
}

.path-outcome li {
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    position: relative;
}

.path-outcome li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ビジネスモデル */
.business-models {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.model-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.model-card.highlighted {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(111, 207, 151, 0.05) 100%);
}

.model-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.model-icon i {
    font-size: 28px;
    color: white;
}

.model-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.model-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.model-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.model-features i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.model-pricing {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.price-from {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 16px;
    color: var(--text-secondary);
    margin-left: 4px;
}

.payment-options {
    margin-top: 80px;
    text-align: center;
}

.payment-options h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

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

.payment-grid-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.payment-grid-inline .payment-item {
    flex-direction: row;
    padding: 20px 30px;
    gap: 12px;
}

.payment-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.payment-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.payment-grid-inline .payment-item i {
    font-size: 24px;
}

.payment-item span {
    font-weight: 500;
    color: var(--text-secondary);
}

/* 受講者の声 */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-question i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 36px;
}

/* CTA */
.training-cta {
    padding: 100px 0;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.training-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.cta-info {
    margin-top: 30px;
}

.cta-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* 免責事項 */
.disclaimer-section {
    padding: 80px 0;
    background: #FFF9F0;
}

.disclaimer-box {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 3px solid #FFD700;
}

.disclaimer-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.disclaimer-toggle:hover {
    opacity: 0.9;
}

.disclaimer-header {
    background: linear-gradient(135deg, #FF6B6B, #FFA500);
    color: white;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.disclaimer-header i {
    font-size: 32px;
}

.disclaimer-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.disclaimer-arrow {
    position: absolute;
    right: 40px;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.disclaimer-content {
    padding: 40px;
    transition: all 0.3s ease;
}

.disclaimer-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 16px 0;
    padding-left: 12px;
    border-left: 4px solid #FF6B6B;
}

.disclaimer-content h4:first-child {
    margin-top: 0;
}

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.disclaimer-content strong {
    color: #FF6B6B;
    font-weight: 700;
}

.disclaimer-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.disclaimer-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid #f0f0f0;
}

.disclaimer-list li:last-child {
    border-bottom: none;
}

.disclaimer-list li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #FF6B6B;
    font-size: 20px;
    font-weight: 700;
}

.warning-text {
    background: #FFF3E0;
    border-left: 4px solid #FF6B6B;
    padding: 20px;
    margin: 24px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.warning-text i {
    color: #FF6B6B;
    font-size: 20px;
    flex-shrink: 0;
}

.warning-text strong {
    display: inline;
    line-height: 1.6;
}

.disclaimer-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.disclaimer-note {
    background: #E3F2FD;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.disclaimer-note i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.update-date {
    text-align: right;
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

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

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

    .stat-number {
        font-size: 36px;
    }

    .service-grid,
    .environment-grid,
    .categories-grid,
    .paths-grid,
    .models-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .disclaimer-header {
        padding: 20px 16px;
    }
    
    .disclaimer-header h3 {
        font-size: 20px;
    }
    
    .disclaimer-header i {
        font-size: 24px;
    }
    
    .disclaimer-arrow {
        right: 16px;
        font-size: 20px;
    }
    
    .disclaimer-content {
        padding: 24px 16px;
    }
    
    .disclaimer-content h4 {
        font-size: 18px;
    }
    
    .disclaimer-content p {
        font-size: 15px;
    }
    }
    
    .disclaimer-header i {
        font-size: 24px;
    }
    
    .disclaimer-content {
        padding: 24px 20px;
    }
    
    .disclaimer-content h4 {
        font-size: 18px;
    }
    
    .disclaimer-list li {
        padding-left: 24px;
        font-size: 14px;
    }
    
    .warning-text {
        padding: 16px;
        font-size: 14px;
    }
}

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .cta-content h2 {
        font-size: 28px;
    }

    .amount {
        font-size: 36px;
    }
}
