/* Main About Section Styles */
.tp-service-area {
    padding: 80px 0;
    font-family: var(--tp-ff-inter) !important;
}

.tp-service-area * {
    font-family: var(--tp-ff-inter) !important;
}

.tp-service-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
}

.tp-service-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.tp-service-card-left-top {
    background: #6f7173;
    color: white;
    grid-column: 1;
    grid-row: 1;
}

.tp-service-card-left-bottom {
    background: #e2e2e2;
    color: #000;
    border: 1px solid #e0e0e0;
    grid-column: 1;
    grid-row: 2;
}

.tp-service-card-right {
    background: #febe10;
    color: white;
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tp-service-card-image-wrapper {
    width: 100%;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.tp-service-card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.tp-service-card-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tp-service-card-right .tp-service-card-content {
    justify-content: center;
    text-align: center;
}

.tp-service-card-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: inherit;
    white-space: nowrap;
}


.tp-service-card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
    color: inherit;
}

.tp-service-card-icon {
    font-size: 32px;
    color: inherit;
    opacity: 0.8;
    line-height: 1;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
}

.tp-service-card-icon svg {
    width: 100%;
    height: 100%;
}

.tp-service-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.tp-service-card-left-bottom .tp-service-card-divider {
    background: rgba(0, 0, 0, 0.1);
}

.tp-service-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
    margin-top: auto;
}

.tp-service-card-left-bottom .tp-service-card-description {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tp-service-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tp-service-card-left-top,
    .tp-service-card-left-bottom,
    .tp-service-card-right {
        grid-column: 1;
        grid-row: auto;
    }
    
    .tp-service-card {
        min-height: 250px;
    }
    
    .tp-service-card-number {
        font-size: 60px;
    }
    
    .tp-service-card-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .tp-service-card-content h2 {
        font-size: 43px !important;
    }

    .tp-service-area {
        padding: 60px 0;
    }
    
    .tp-service-card {
        padding: 30px;
        min-height: 220px;
    }
    
    .tp-service-card-number {
        font-size: 48px;
    }
    
    .tp-service-card-title {
        font-size: 18px;
    }
    
    .tp-service-card-description {
        font-size: 14px;
    }
    
    .tp-service-card-content {
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .tp-service-card {
        padding: 25px;
    }
    
    .tp-service-card-number {
        font-size: 40px;
    }
    
    .tp-service-card-title {
        font-size: 16px;
    }
}

