/* ===== Static Content Pages (Terms, Privacy, Payment Flow, etc.) ===== */

/* Hero Section */
.static-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px 5%;
    text-align: center;
}

.static-hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.static-hero p {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Section */
.static-content {
    max-width: 800px;
    margin: -20px auto 40px;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.static-content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--border-color);
}

/* Section headings */
.static-content-card h2 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

.static-content-card h2:first-child {
    margin-top: 0;
}

.static-content-card h3 {
    font-size: 16px;
    color: var(--dark-gray);
    margin: 20px 0 8px;
}

/* Body text */
.static-content-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}

.static-content-card p.lead {
    font-size: 16px;
    color: var(--text-light);
}

/* Lists */
.static-content-card ul,
.static-content-card ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.static-content-card li {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 6px;
    font-size: 15px;
}

/* Last updated date */
.last-updated {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

/* Company Info Block */
.company-info-block {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.company-info-block .company-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-gray);
}

.company-info-block .company-address {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.6;
}

/* Payment Flow Steps */
.payment-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
}

.payment-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.payment-step-content h3 {
    font-size: 16px;
    color: var(--dark-gray);
    margin: 0 0 4px;
}

.payment-step-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .static-hero {
        padding: 36px 20px;
    }

    .static-hero h1 {
        font-size: 26px;
    }

    .static-content {
        padding: 0 16px;
    }

    .static-content-card {
        padding: 24px 20px;
    }

    .payment-step {
        flex-direction: column;
        gap: 8px;
    }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
    .static-hero h1 {
        font-size: 22px;
    }

    .static-content-card {
        padding: 20px 16px;
    }

    .static-content-card h2 {
        font-size: 18px;
    }
}
