/* SEO Content Styles with Responsive Tables */
.textSeo {
    color: #fff;
    padding: 20px 0;
}

.textSeo h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 700;
}

.textSeo h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 600;
}

.textSeo h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.textSeo p {
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.textSeo ul, .textSeo ol {
    margin: 20px 0;
    padding-left: 25px;
    color: #fff;
}

.textSeo li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.textSeo strong {
    color: #ffd700;
    font-weight: 600;
}

.textSeo em {
    font-style: italic;
    opacity: 0.9;
}

/* Table Container */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
}

/* Table Styles */
.seo-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 34, 93, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.seo-table thead {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4), rgba(75, 0, 130, 0.4));
}

.seo-table th {
    background: rgba(138, 43, 226, 0.2);
    color: #ffd700;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seo-table td {
    padding: 12px 16px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.seo-table tbody tr {
    transition: background 0.2s ease;
}

.seo-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.seo-table tbody tr:hover {
    background: rgba(138, 43, 226, 0.1);
}

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

/* Mobile Responsive Tables */
@media (max-width: 767px) {
    .textSeo h1 {
        font-size: 24px;
    }
    
    .textSeo h2 {
        font-size: 20px;
        margin-top: 30px;
    }
    
    .textSeo h3 {
        font-size: 18px;
        margin-top: 25px;
    }
    
    .textSeo p {
        font-size: 15px;
    }
    
    .table-responsive {
        margin: 20px -12px;
        width: calc(100% + 24px);
    }
    
    /* Stack table on mobile */
    .seo-table {
        border: 0;
        border-radius: 0;
    }
    
    .seo-table thead {
        display: none;
    }
    
    .seo-table tbody tr {
        display: block;
        margin-bottom: 20px;
        background: rgba(30, 34, 93, 0.4);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .seo-table tbody tr:nth-child(even) {
        background: rgba(30, 34, 93, 0.4);
    }
    
    .seo-table td {
        display: block;
        text-align: right;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        padding-left: 50%;
    }
    
    .seo-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: #ffd700;
        text-transform: uppercase;
        font-size: 12px;
        text-align: left;
    }
    
    .seo-table td:last-child {
        border-bottom: none;
    }
    
    .textSeo ul, .textSeo ol {
        padding-left: 20px;
        margin: 15px 0;
    }
    
    .textSeo li {
        margin-bottom: 8px;
        font-size: 14px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .textSeo h1 {
        font-size: 22px;
    }
    
    .textSeo h2 {
        font-size: 18px;
    }
    
    .textSeo h3 {
        font-size: 16px;
    }
    
    .textSeo p {
        font-size: 14px;
    }
    
    .seo-table td {
        font-size: 13px;
        padding-left: 45%;
    }
    
    .seo-table td:before {
        font-size: 11px;
    }
}

/* Desktop optimization */
@media (min-width: 1200px) {
    .textSeo {
        max-width: 1140px;
        margin: 0 auto;
    }
}
