.tl-74e7afaf-wrapper {
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.tl-74e7afaf-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.tl-74e7afaf-header {
    text-align: center;
    margin-bottom: 50px;
}

.tl-74e7afaf-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.tl-74e7afaf-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.tl-74e7afaf-divider {
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 20px auto 0;
    border-radius: 2px;
}

.tl-74e7afaf-grid {
    display: grid;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    grid-template-columns: repeat(5, 1fr);
}

.tl-74e7afaf-logo-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 120px;
    cursor: pointer;
}

.tl-74e7afaf-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tl-74e7afaf-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

/* Hover Effects Premium */
.tl-74e7afaf-logo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    z-index: 2;
}

.tl-74e7afaf-logo-item:hover .tl-74e7afaf-img {
    filter: grayscale(0%) opacity(1);
}

/* Counter Footer */
.tl-74e7afaf-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 1s ease forwards;
}

.tl-74e7afaf-counter-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-74e7afaf-counter-prefix,
.tl-74e7afaf-counter-number {
    color: #1a1a1a;
}

.tl-74e7afaf-phrase {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

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

/* Responsive Overrides (Handled mostly via Elementor selectors, but basic fallbacks here) */
@media (max-width: 1024px) {
    .tl-74e7afaf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .tl-74e7afaf-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .tl-74e7afaf-wrapper {
        padding: 40px 15px;
    }
    .tl-74e7afaf-logo-item {
        padding: 15px;
        height: 90px;
    }
}