/* SEO Content Styles */
.seo-content-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.seo-content-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.seo-content-section h3 {
    color: #334155;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* FAQ Accordion */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}

.faq-question {
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-answer {
    padding-top: 0.5rem;
    color: #64748b;
    line-height: 1.6;
}

/* Info Tables */
.info-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.info-table th, .info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.info-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.info-table tr:hover {
    background: #f8fafc;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f1f5f9;
    border-left: 4px solid #00ABE4;
}

.benefit-card h4 {
    margin-bottom: 0.5rem;
    color: #0f172a;
}
