.seo-services-wrapper-35de1552 {
    font-family: inherit;
}

.seo-intro-text {
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #444;
}

.seo-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .seo-tabs-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.seo-tabs-nav {
    display: none;
}

@media (min-width: 768px) {
    .seo-tabs-nav {
        display: flex;
        flex-direction: column;
        flex: 0 0 250px;
        border-right: 1px solid #ddd;
    }
}

.seo-tab-title {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.seo-tab-title:hover {
    background: #f9f9f9;
}

.seo-tab-title.active {
    color: #000;
    border-left-color: #0073aa;
    background: #f1f1f1;
}

.seo-tabs-content {
    flex: 1;
}

.seo-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.seo-tab-pane.active {
    display: block;
}

.seo-tab-title-mobile {
    display: block;
    padding: 15px;
    background: #f1f1f1;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 4px;
}

@media (min-width: 768px) {
    .seo-tab-title-mobile {
        display: none;
    }
}

.seo-tab-inner-content {
    padding: 10px 0;
}

@media (min-width: 768px) {
    .seo-tab-inner-content {
        padding: 0 20px;
    }
}

.seo-tab-inner-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.seo-tab-inner-content p {
    margin-bottom: 15px;
}

.seo-expert-insight {
    background: #eef6fc;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #0073aa;
    font-size: 0.95em;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
