/* Static Pages (Policy & Legal) - Additional Styles */
/* Extends faq.css for static content pages */

.faq-content {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

.faq-content h1 {
    font-size: 1.8em;
    color: #00b300;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00b300;
}

.faq-content h2 {
    font-size: 1.5em;
    color: #00b300;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.faq-content h3 {
    font-size: 1.3em;
    color: #00b300;
    margin: 1.3rem 0 0.8rem 0;
    font-weight: 600;
}

.faq-content h4 {
    font-size: 1.1em;
    color: #00b300;
    margin: 1.2rem 0 0.8rem 0;
    font-weight: 600;
}

.faq-content p {
    margin: 1rem 0;
    text-align: justify;
}

.faq-content ul,
.faq-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-content li {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.faq-content strong {
    color: #00b300;
    font-weight: 600;
}

.faq-content a {
    color: #00b300;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-content a:hover {
    color: #00d900;
    border-bottom-color: #00d900;
}

.faq-content a[target="_blank"]::after {
    content: " ↗";
    font-size: 0.8em;
    color: #00b300;
}

/* Special padding for indented content */
.faq-content p[style*="padding-left"] {
    background-color: #f8f9fa;
    padding: 1rem 2rem;
    margin: 1rem 0;
    border-left: 4px solid #00b300;
    border-radius: 4px;
}

/* Table styles for static pages */
.faq-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-content table th,
.faq-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.faq-content table th {
    background: linear-gradient(135deg, #00b300 0%, #00d900 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.faq-content table tr:last-child td {
    border-bottom: none;
}

.faq-content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.faq-content table tr:hover {
    background-color: rgba(0, 179, 0, 0.05);
}

.faq-content table td strong {
    color: #00b300;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-content {
        font-size: 14px;
    }
    
    .faq-content h1 {
        font-size: 1.5em;
    }
    
    .faq-content h2 {
        font-size: 1.3em;
    }
    
    .faq-content h3 {
        font-size: 1.2em;
    }
    
    .faq-content h4 {
        font-size: 1.1em;
    }
    
    .faq-content p[style*="padding-left"] {
        padding: 1rem;
    }
    
    .faq-content table {
        font-size: 14px;
    }
    
    .faq-content table th,
    .faq-content table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .faq-content table {
        font-size: 12px;
    }
    
    .faq-content table th,
    .faq-content table td {
        padding: 6px 8px;
    }
}

/* Print styles */
@media print {
    .faq-content {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .faq-content a {
        color: #000;
        text-decoration: underline;
    }
    
    .faq-content a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}
