.services-header {
    margin-bottom: 50px;
}

.services-header-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.services-header-title {
    font-family: var(--font);
    font-size: 48px;
    font-weight: bold;
    color: #0A2038;
    line-height: 1.2;
    flex: 0 0 auto;
    min-width: 400px;
}

.services-header-title .text-primary {
    color: #00B0F0;
}

.services-header-desc {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    flex: 1;
}

.services-grid {
    gap: 30px;
}

.service {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-icon img,
.service-icon i {
    width: 100%;
    height: 100%;
    color: #00B0F0;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 22px;
    font-weight: bold;
    color: #0A2038;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.service-desc {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-link:hover {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 991.98px) {
    .services-header-content {
        flex-direction: column;
        gap: 20px;
    }

    .services-header-title {
        min-width: 100%;
        font-size: 36px;
    }

    .services-grid {
        gap: 20px;
    }
}

@media screen and (max-width: 767.98px) {
    .services-header-title {
        font-size: 28px;
    }

    .service {
        padding: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-desc {
        font-size: 14px;
    }
}