.tbc-wrapper-43a40c9a {
    font-family: sans-serif;
    color: #4b5563;
    overflow: hidden;
    padding: 20px 0;
}

.tbc-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tbc-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.tbc-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.tbc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    perspective: 1000px;
}

.tbc-card-container {
    opacity: 0;
    transform: translateY(30px);
    animation: tbcFadeUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.tbc-card {
    background: #ffffff; /* fallback */
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(255,255,255,0.1);
}

.tbc-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.3);
}

.tbc-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
    display: inline-block;
}

.tbc-icon svg {
    width: 1em;
    height: 1em;
}

.tbc-card:hover .tbc-icon {
    transform: scale(1.2) translateZ(30px);
}

.tbc-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    transition: transform 0.4s ease;
}

.tbc-card:hover .tbc-service-title {
    transform: translateZ(20px);
}

@keyframes tbcFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .tbc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tbc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}