/* Pages Specific Styles */

/* Page Hero */
.page-hero {
    padding: 80px 0 60px;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 48px 0 20px;
    color: var(--text-primary);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-wrapper ul,
.content-wrapper ol {
    margin: 20px 0 20px 24px;
    line-height: 1.8;
}

.content-wrapper li {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.content-wrapper a:hover {
    border-bottom-color: var(--primary-color);
}

.highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    margin: 32px 0;
    border-radius: 8px;
}

.highlight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.highlight-box p {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.faq-item ul {
    margin: 12px 0 0 20px;
}

.faq-item li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.faq-item strong {
    color: var(--text-primary);
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.contact-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-section > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.system-status {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: white;
    border-radius: 16px;
    text-align: left;
}

.system-status h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.system-status ul {
    list-style: none;
    padding: 0;
}

.system-status li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.system-status li:last-child {
    border-bottom: none;
}

.system-status li:before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: 700;
    margin-right: 8px;
}

/* Logo link fix */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-links .active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 36px;
    }
    
    .content-wrapper h2 {
        font-size: 28px;
    }
    
    .content-wrapper h3 {
        font-size: 20px;
    }
    
    .contact-section h2 {
        font-size: 32px;
    }
    
    .faq-category h3 {
        font-size: 24px;
    }
}
