/* ============================================
   STATIC PAGE STYLES (Terms, FAQ, Privacy, Contact)
   ============================================ */
.static-page { min-height: 100vh; background: var(--bg); }
.static-container { max-width: 900px; margin: 0 auto; padding: 2rem; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; font-size: 0.9rem; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .current { color: var(--text); font-weight: 500; }

.content-card { background: var(--card-bg); border-radius: 16px; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.content-header { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 2px solid var(--border); }
.content-body hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; opacity: 0.5; }
.content-header h1 { font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.content-header .updated-date { font-size: 0.9rem; color: var(--text-muted); }

.content-body { line-height: 1.8; color: var(--text); }
.content-body h2 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 1rem; padding-left: 1rem; border-left: 3px solid var(--primary); }
.content-body p { margin-bottom: 1rem; color: var(--text-light); }
.content-body ul, .content-body ol { margin: 1rem 0; padding-left: 1.5rem; }
.content-body li { margin-bottom: 0.5rem; color: var(--text-light); }
.content-body strong { color: var(--text); }
.content-body a { color: var(--primary); text-decoration: none; }
.content-body a:hover { text-decoration: underline; }

.highlight-box { background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(255,0,0,0.1) 100%); border-left: 4px solid var(--primary); padding: 1.25rem 1.5rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; }
.highlight-box p { margin: 0; color: var(--text); }
.warning-box { background: rgba(245,158,11,0.1); border-left: 4px solid #f59e0b; padding: 1.25rem 1.5rem; border-radius: 0 12px 12px 0; margin: 1.5rem 0; }
.warning-box p { margin: 0; color: var(--text); }

/* FAQ Specific */
.faq-header { text-align: center; margin-bottom: 2rem; }
.faq-header h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.faq-header p { color: var(--text-muted); }

.faq-search { max-width: 500px; margin: 0 auto 2rem; }
.faq-search input { width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--border); border-radius: 12px; font-size: 1rem; }
.faq-search input:focus { outline: none; border-color: var(--primary); }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--card-bg); border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; }
.faq-question:hover { background: var(--bg); }
.faq-question h3 { font-size: 1rem; font-weight: 500; margin: 0; flex: 1; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.faq-item.open .faq-icon { background: var(--primary); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-content { padding: 0 1.5rem 1.5rem; color: var(--text-light); line-height: 1.7; }

/* Contact Specific */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card { background: var(--card-bg); border-radius: 12px; padding: 1.25rem; display: flex; align-items: flex-start; gap: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); text-decoration: none; color: inherit; border: 1px solid transparent; transition: all 0.2s ease; }
a.info-card:hover { border-color: var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.info-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,0,0,0.1); color: var(--primary); flex-shrink: 0; }
.info-content h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.info-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.info-content a, .info-link { color: var(--primary); text-decoration: none; font-size: 0.9rem; }

.contact-form { background: var(--card-bg); border-radius: 16px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.contact-form h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border); border-radius: 10px; font-size: 0.95rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.submit-btn { width: 100%; padding: 1rem; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 500; cursor: pointer; }
.submit-btn:hover { background: var(--primary-dark); }

@media (max-width: 768px) {
    .static-container { padding: 1rem; }
    .content-card { padding: 1.5rem; }
    .content-header h1 { font-size: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
}
