.service-center-info {
    background: #2a2a2a;
    padding: 60px 0;
    color: #fff;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.service-description {
    max-width: 1200px;
    margin: 20px auto 0 auto;
}
.service-description p {
    font-size: 12=8px;
    line-height: 1.6;
    color: #ffffff;
}

.brands-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0 20px;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-item {
    cursor: pointer;
    padding: 20px;
    background: #000000;
    border-radius: 8px;
    transition: all 0.6s ease;

}

.brand-item:hover {
    opacity: 0.8;
    transform: translateY(-5px);
}

.brand-item.active {
    opacity: 1;
    background: #3a3a3a;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

.service-descriptions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.description-item {
    display: none;
    opacity: 0;
    animation: fadeIn 0.9s forwards;
}

.description-item.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.description-item li { 
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
    color: #ccc;
    line-height: 1.8;
    font-size:18px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.left-pane, .right-pane {
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
}

.left-pane h3, .right-pane h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.left-pane p, .right-pane p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 900px) {
    .brands-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .description-item.active {
        grid-template-columns: 1fr;
    }
    .brand-logo {
        height: 40px;
    }
}