/* SEO Content Section */
.seo-content {
    background: var(--white);
    color: var(--text-main);
    margin-bottom: 40px;
}

.seo-intro {
    margin-bottom: 30px;
}

.seo-intro h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.seo-intro p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.seo-accordion {
    margin-bottom: 15px;
    /* Separation between distinct accordions */
    border: 1px solid #E5E7EB;
    border-radius: var(--radius);
    overflow: hidden;
}

.seo-accordion summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    padding: 20px;
    background: var(--bg-light);
    list-style: none;
    /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.seo-accordion summary:hover {
    background: #E5E7EB;
}

.seo-accordion summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 800;
}

.seo-accordion[open] summary::after {
    content: '-';
}

/* Hide default marker in styles that don't support list-style: none on summary */
.seo-accordion summary::-webkit-details-marker {
    display: none;
}

.seo-inner {
    padding: 30px;
    line-height: 1.8;
    background: #FAFAFA;
    border-top: 1px solid #E5E7EB;
    animation: fadeIn 0.5s ease-out;
}

.seo-inner h3 {
    color: var(--primary-light);
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.seo-inner ul,
.seo-inner ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.seo-inner li {
    margin-bottom: 10px;
}

/* Table Styles */
.seo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
}

.seo-table th,
.seo-table td {
    border: 1px solid #E5E7EB;
    padding: 15px;
    text-align: left;
}

.seo-table th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.seo-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.seo-table tr:hover {
    background-color: #F1F5F9;
}

@media (max-width: 768px) {
    .seo-table {
        display: block;
        overflow-x: auto;
    }
}