/* Content Pages Styles (privacy, terms, offer, refund, payment) */

/* Base content page styles */
.content-page,
.privacy-container,
.terms-container,
.payment-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Headers */
.content-page h1,
.privacy-title,
.terms-title,
.payment-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--main-green, #9FBC0B);
    margin-bottom: 20px;
}

.privacy-subtitle,
.terms-subtitle,
.payment-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

.privacy-header,
.terms-header,
.payment-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f3f4f6;
}

/* Sections */
.content-page h2,
.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 24px;
}

.privacy-section,
.terms-section,
.payment-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.section-content {
    margin-top: 15px;
}

/* Typography */
.content-page p,
.section-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 15px;
}

.content-page ul,
.content-page ol,
.section-content ul,
.section-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-page li,
.section-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 8px;
}

.section-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #374151;
    margin: 20px 0 12px;
}

.section-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    margin: 15px 0 10px;
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #f59e0b;
}

.highlight-title {
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #3b82f6;
}

.info-title {
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 14px;
    color: #1e3a8a;
    line-height: 1.6;
}

/* Contact info */
.contact-info {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.contact-title {
    font-weight: 700;
    color: #065f46;
    margin-bottom: 12px;
    font-size: 15px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
}

.contact-icon {
    font-size: 16px;
}

.contact-text {
    color: #374151;
}

/* Definition list for terms */
.definition-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.definition-item {
    padding: 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.definition-term {
    font-weight: 600;
    color: var(--main-green, #9FBC0B);
    margin-bottom: 5px;
    font-size: 14px;
}

.definition-desc {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

/* Back button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    transition: all 0.2s;
}

.back-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Payment page specific */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.payment-method-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.payment-method-card:hover {
    border-color: var(--main-green, #9FBC0B);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.payment-method-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.payment-method-desc {
    font-size: 14px;
    color: #6b7280;
}

/* Mobile responsive */
@media (max-width: 768px) {

    .content-page,
    .privacy-container,
    .terms-container,
    .payment-container {
        padding: 20px;
        margin: 15px;
        border-radius: 16px;
    }

    .privacy-title,
    .terms-title,
    .payment-title,
    .content-page h1 {
        font-size: 24px;
    }

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

    .privacy-section,
    .terms-section,
    .payment-section {
        padding: 18px;
    }

    .contact-details {
        flex-direction: column;
    }
}