/* ========================================
   前澤友作 本プロジェクト - スタイルシート
   配色: 冷灰銀杏 #8D8D92, #C9B28E, #EDEDED
   フォント: Noto Sans JP
   ======================================== */

/* ========== リセット＆基本設定 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gray: #8D8D92;
    --primary-gold: #C9B28E;
    --primary-light: #EDEDED;
    --text-dark: #2a2a2a;
    --text-medium: #666666;
    --white: #ffffff;
    --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);
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== ヘッダー ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--text-dark);
}

.nav a:hover::after {
    width: 100%;
}

/* ========== ヒーローセクション ========== */
.hero {
    padding: 80px 0;
    background: url(../images/bgc.png) no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 178, 142, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #d4c29f);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.title-line-1 {
    display: block;
    color: var(--text-dark);
}

.title-line-2 {
    display: block;
    color: var(--primary-gold);
    font-size: 72px;
}

.title-line-3 {
    display: block;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta-group {
    margin-bottom: 40px;
}

.btn-primary {
    background: linear-gradient(135deg, #06c755 0%, #05b34b 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 199, 85, 0.4);
}

.btn-primary i {
    font-size: 24px;
}

.cta-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-medium);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
}

/* プロフィールカード */
.hero-right {
    animation: fadeInRight 0.8s ease-out;
}

.profile-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-4px);
}

.profile-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-gray), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    padding: 32px;
}

.profile-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.profile-title {
    font-size: 14px;
    color: var(--text-medium);
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.profile-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-light);
    font-size: 14px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--primary-gold);
    font-size: 16px;
    width: 20px;
}

.profile-quote {
    background: linear-gradient(135deg, var(--primary-light), #f8f8f8);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
}

/* ========== セクション共通 ========== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    font-weight: 500;
}

/* ========== Aboutセクション ========== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-content {
    padding: 20px;
}

.about-text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.9;
}

.about-text strong {
    color: var(--primary-gold);
    font-weight: 700;
}

.about-highlight {
    background: linear-gradient(135deg, var(--primary-gold), #d4c29f);
    color: var(--white);
    padding: 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    box-shadow: var(--shadow-md);
}

.about-highlight i {
    font-size: 32px;
    flex-shrink: 0;
}

.about-highlight p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

/* ========== Booksセクション ========== */
.books-section {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.book-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.book-feature:last-child {
    margin-bottom: 0;
}

.book-feature.reverse {
    direction: rtl;
}

.book-feature.reverse > * {
    direction: ltr;
}

.book-category {
    display: inline-block;
    background: var(--primary-gray);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.book-feature-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.book-feature-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.book-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: var(--white);
    border: 1px solid var(--primary-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
}

.book-feature-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.book-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========== Whoセクション ========== */
.who-section {
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.who-card {
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.who-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.who-card i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.who-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.who-message {
    background: linear-gradient(135deg, var(--primary-gray), #9d9da2);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.who-message p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0;
}

/* ========== Reviewsセクション ========== */
.reviews-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.reviewer-detail {
    font-size: 13px;
    color: var(--text-medium);
}

.review-rating {
    display: flex;
    gap: 4px;
}

.review-rating i {
    color: var(--primary-gold);
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ========== Howセクション ========== */
.how-section {
    background: var(--white);
}

.how-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 48px;
    color: var(--primary-gold);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

.step-arrow {
    color: var(--primary-gray);
    font-size: 28px;
    flex-shrink: 0;
}

.how-notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.note-item i {
    color: var(--primary-gold);
    font-size: 18px;
}

/* ========== FAQセクション ========== */
.faq-section {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-answer {
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-medium);
}

/* ========== Final CTAセクション ========== */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-gray) 0%, #7a7a7f 100%);
    padding: 100px 0;
}

.final-cta-content {
    text-align: center;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.final-cta-text {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 700;
}

.btn-large {
    font-size: 20px;
    padding: 22px 50px;
}

.final-cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== フッター ========== */
.footer {
    background: var(--text-dark);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* ========== Fixed Bottom CTA ========== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    padding: 16px 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-cta-btn {
    background: linear-gradient(135deg, #06c755 0%, #05b34b 100%);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.fixed-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 199, 85, 0.4);
}

.fixed-cta-btn i {
    font-size: 20px;
}

/* ========== アニメーション ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== レスポンシブデザイン ========== */
@media (max-width: 1024px) {
    .hero-container,
    .about-grid,
    .book-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .book-feature.reverse {
        direction: ltr;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    /* Hero Section 手机端优化 */
    .hero {
        padding: 40px 0 50px;
        margin-top: 0;
    }

    .hero-container {
        gap: 30px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-badge {
        display: block;
        margin: 0 auto 20px;
        width: fit-content;
    }

    .hero-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 20px;
    }

    .title-line-2 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        text-align: center;
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .cta-note {
        text-align: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Profile Card 手机端优化 */
    .profile-card {
        margin: 0 10px;
    }

    .profile-image {
        height: 250px;
    }

    .profile-content {
        padding: 24px 20px;
    }

    .profile-name {
        font-size: 26px;
        text-align: center;
    }

    .profile-title {
        text-align: center;
        font-size: 13px;
    }

    .detail-item {
        font-size: 13px;
        padding: 8px 0;
    }

    .profile-quote {
        font-size: 13px;
        padding: 16px;
        text-align: center;
    }

    /* Section 通用优化 */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* About Section */
    .about-content {
        padding: 0;
    }

    .about-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .about-highlight {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .about-highlight i {
        font-size: 28px;
    }

    .about-highlight p {
        font-size: 16px;
    }

    /* Books Section */
    .book-feature {
        margin-bottom: 50px;
    }

    .book-feature-title {
        font-size: 22px;
    }

    .book-feature-text {
        font-size: 15px;
    }

    .book-tags {
        justify-content: center;
    }

    /* Who Section */
    .who-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-card {
        padding: 30px 20px;
    }

    .who-message {
        padding: 30px 20px;
    }

    .who-message p {
        font-size: 18px;
    }

    /* Reviews Section */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 24px;
    }

    /* How Section */
    .how-steps {
        gap: 15px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .how-notes {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    /* FAQ Section */
    .faq-item {
        padding: 24px 20px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        padding-left: 30px;
        font-size: 14px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-title {
        font-size: 28px;
    }

    .final-cta-text {
        font-size: 18px;
    }

    .btn-large {
        font-size: 18px;
        padding: 18px 40px;
        width: 100%;
        max-width: 350px;
    }

    /* Fixed CTA */
    .fixed-cta {
        padding: 12px 10px;
    }

    .fixed-cta-btn {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Hero Section 小屏优化 */
    .hero {
        padding: 30px 0 40px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .title-line-2 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
    }

    .btn-primary {
        font-size: 15px;
        padding: 14px 28px;
    }

    .btn-primary i {
        font-size: 20px;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* Profile Card */
    .profile-card {
        margin: 0 5px;
    }

    .profile-image {
        height: 220px;
    }

    .profile-content {
        padding: 20px 16px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-title {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .detail-item {
        font-size: 12px;
        gap: 10px;
    }

    .detail-item i {
        font-size: 14px;
    }

    .profile-quote {
        font-size: 12px;
        padding: 14px;
    }

    /* Section Headers */
    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* About Section */
    .about-text {
        font-size: 14px;
    }

    .about-highlight {
        padding: 18px;
    }

    .about-highlight i {
        font-size: 24px;
    }

    .about-highlight p {
        font-size: 15px;
    }

    /* Books Section */
    .book-feature {
        margin-bottom: 40px;
    }

    .book-category {
        font-size: 11px;
        padding: 5px 14px;
    }

    .book-feature-title {
        font-size: 20px;
    }

    .book-feature-text {
        font-size: 14px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Who Section */
    .who-card {
        padding: 25px 16px;
    }

    .who-card i {
        font-size: 40px;
    }

    .who-card h3 {
        font-size: 16px;
    }

    .who-card p {
        font-size: 13px;
    }

    .who-message {
        padding: 25px 16px;
    }

    .who-message p {
        font-size: 16px;
    }

    /* Reviews Section */
    .review-card {
        padding: 20px 16px;
    }

    .reviewer-name {
        font-size: 15px;
    }

    .reviewer-detail {
        font-size: 12px;
    }

    .review-text {
        font-size: 13px;
    }

    /* How Section */
    .step-card {
        padding: 25px 16px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        top: -14px;
    }

    .step-icon i {
        font-size: 40px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-text {
        font-size: 13px;
    }

    .note-item {
        font-size: 14px;
    }

    /* FAQ Section */
    .faq-item {
        padding: 20px 16px;
    }

    .faq-question {
        font-size: 15px;
        gap: 12px;
    }

    .faq-question i {
        font-size: 20px;
    }

    .faq-answer {
        padding-left: 25px;
        font-size: 13px;
    }

    /* Final CTA */
    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-title {
        font-size: 24px;
        line-height: 1.5;
    }

    .final-cta-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .btn-large {
        font-size: 16px;
        padding: 16px 32px;
    }

    .final-cta-note {
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }

    /* Fixed CTA */
    .fixed-cta {
        padding: 10px 8px;
    }

    .fixed-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
        gap: 8px;
    }

    .fixed-cta-btn i {
        font-size: 18px;
    }
}

