/* SEO Content Styles with Responsive Tables */
.textSeo p {
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
}

.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;
}

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

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

.textSeo 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;
}

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

.textSeo tbody tr {
    transition: background 0.2s ease;
}

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

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

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

/* Responsive Tables for Mobile */
@media (max-width: 767px) {
    .textSeo table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -12px;
        width: calc(100% + 24px);
        border-radius: 0;
    }
    
    .textSeo th,
    .textSeo td {
        padding: 10px 12px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .textSeo th {
        font-size: 13px;
        letter-spacing: 0.3px;
    }
    
    .textSeo ul, .textSeo ol {
        padding-left: 20px;
        margin: 15px 0;
    }
    
    .textSeo li {
        margin-bottom: 8px;
        font-size: 14px;
    }
}

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