/* ========================================
   COMMON PAGE STYLES - GAMT™
   Consistent design language for all pages
   ======================================== */

/* Page Sections */
.page-section {
    padding: 80px 20px;
    background: #ffffff;
}

.page-section-first {
    padding-top: 60px;
    text-align: center;
}

.page-section-alt {
    background: #f8f9fa;
}

/* Page Headers */
.page-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    line-height: 1.2;
}

.page-title sup {
    font-size: 0.5em;
    vertical-align: super;
}

.page-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Page Content */
.page-content {
    max-width: 100%;
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-content h2 sup {
    font-size: 0.5em;
    vertical-align: super;
}

.page-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.page-content p sup {
    font-size: 0.5em;
    vertical-align: super;
}

.link-inline {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #357ABD;
    text-decoration: underline;
}

/* Features List */
.features-list {
    display: grid;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 48px;
    min-width: 60px;
    line-height: 1;
}

.feature-content h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.feature-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* CTA Box */
.page-cta-box {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.btn-page-cta {
    display: inline-block;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 12px 36px rgba(74, 144, 226, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-page-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 48px rgba(74, 144, 226, 0.4),
        0 6px 14px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    /* Page Sections Mobile */
    .page-section {
        padding: 50px 20px;
    }

    .page-section-first {
        padding-top: 40px;
    }

    /* Page Headers Mobile */
    .page-title {
        font-size: 32px;
    }

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

    /* Page Content Mobile */
    .page-content h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .page-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Features List Mobile */
    .feature-item {
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 16px;
    }

    /* CTA Box Mobile */
    .page-cta-box {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .page-cta-box h2 {
        font-size: 26px;
    }

    .btn-page-cta {
        padding: 16px 40px;
        font-size: 16px;
    }
}

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

    .page-subtitle {
        font-size: 15px;
    }

    .page-content h2 {
        font-size: 22px;
    }

    .page-content p {
        font-size: 15px;
    }

    .page-cta-box h2 {
        font-size: 24px;
    }

    .btn-page-cta {
        padding: 14px 32px;
        font-size: 15px;
    }
}
