.services-container {
    max-width: 1200px;
    padding: 60px 20px;
    margin: 0 auto;
}

.scroll-container {
    padding: 10px;
    background: #f8f9fa;
}

.buttons-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 30px 0 20px;
    scrollbar-color: var(--primary-color) #e9ecef;
}

.buttons-scroll::-webkit-scrollbar {
    height: 6px;
}

.buttons-scroll::-webkit-scrollbar-track {
    background: #e9ecef;
}

.buttons-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.service-btn {
    min-width: fit-content;
    padding: 15px 25px;
    background: #f8f9fa;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
    white-space: nowrap;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-btn:hover {
    transform: translateY(-5px);
}

.service-btn.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.content-area {
    min-height: 400px;
}

.service-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.service-content.active {
    display: flex;
    align-items: stretch;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
}

.service-title {
    margin-bottom: 20px;
}

.service-description {
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .service-content.active {
        flex-direction: column;
    }

    .content-right {
        min-height: 250px;
    }

    .content-left {
        padding: 25px;
    }
    
    .service-btn {
        min-width: 150px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}