.htcta-service {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border-radius: 14px;
    margin: 32px 0;
    border-left: 4px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.htcta-service--blue {
    border-left-color: #2563eb;
}

.htcta-service--orange {
    border-left-color: #ff8c27;
}

.htcta-service--green {
    border-left-color: #10b981;
}

.htcta-service__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.htcta-service--blue .htcta-service__icon {
    background: #e0f2fe;
    color: #2563eb;
}

.htcta-service--orange .htcta-service__icon {
    background: #fff3e0;
    color: #ff8c27;
}

.htcta-service--green .htcta-service__icon {
    background: #d1fae5;
    color: #10b981;
}

.htcta-service__content {
    flex: 1;
}

.htcta-service__heading {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #060b23;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.htcta-service__description {
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    color: #9da0ab;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.htcta-service__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.htcta-service--blue .htcta-service__button {
    color: #2563eb;
}

.htcta-service--orange .htcta-service__button {
    color: #ff8c27;
}

.htcta-service--green .htcta-service__button {
    color: #10b981;
}


@media (max-width: 600px) {
    .htcta-service {
        flex-direction: column;
        padding: 24px;
    }

    .htcta-service__icon {
        width: 48px;
        height: 48px;
    }
}
