@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-straight/css/uicons-regular-straight.css');

.services-list {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #f4f9ff;
    border: 1px solid #d0e3ff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.service-card h2 {
    color: #005bb6;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
}

.service-card i {
    display: flex;
    justify-self: center;;
    font-size: 6rem;
}

.services-list .btn-primary {
    padding: 0.6rem 1.2rem;
    margin-top: 50px;
    background-color: var(--cta-bg);
    color: var(--cta-text);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s ease;
    height: 50px;
    width: 100px;
    display: flex;
    justify-self: center;
    align-items: center;
    justify-content: center;
}

.btn-primary a {
    color: white;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--cta-hover-bg);
}