/* Legal Pages Specific Styles */
.legal-content {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px 20px;
    background: #f5f5fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 97, 235, 0.1);
}

.legal-content h1 {
    background: linear-gradient(135deg, #0061eb, #0051c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.legal-date {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 24px;
}

.legal-content h2 {
    color: #2d2d36;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 20px;
}

.legal-content h3 {
    color: #2d2d36;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    margin-top: 16px;
}

.legal-content p {
    color: #52525a;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.legal-content li {
    color: #52525a;
    line-height: 1.6;
    margin-bottom: 6px;
    font-size: 0.875rem;
}

.legal-content a {
    color: #4084ff;
    text-decoration: underline;
    font-weight: 500;
}

.legal-content a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .legal-content h1 {
        font-size: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.125rem;
    }
    
    .legal-content p, .legal-content li {
        font-size: 0.813rem;
    }
}

/* FAQ Specific Styles */
.faq-section {
    margin: 40px 0;
}

.faq-section h2 {
    color: #2d2d36;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(135deg, #84b0fc, #4084ff) 1;
}

.faq-item {
    margin-bottom: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 97, 235, 0.05), rgba(0, 97, 235, 0.03));
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.faq-item h3 {
    color: #2d2d36;
    font-size: 1.125rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.faq-item p {
    color: #52525a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-item ul {
    margin-left: 24px;
    margin-top: 8px;
}

.faq-item ul li {
    color: #52525a;
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-item ul li strong {
    color: #2d2d36;
    font-weight: 600;
}

.cta-section {
    background: #f5f5fa;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px 0 40px;
    border: 1px solid #E2E8F0;
}

.cta-section h2 {
    color: #2d2d36;
    margin-bottom: 12px;
}

.cta-section p {
    color: #52525a;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0061eb, #0051c7);
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    box-shadow: 0 10px 40px -10px rgba(0, 97, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(0, 97, 235, 0.4);
    color: #fff !important;
    background: linear-gradient(135deg, #0051c7, #0061eb);
}

.breadcrumb {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #737373;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #171717;
    text-decoration: underline;
}