#page-home .aha-home-services {
    background:
        linear-gradient(135deg, rgba(248, 250, 255, 0.96) 0%, rgba(234, 244, 255, 0.95) 48%, rgba(255, 248, 231, 0.9) 100%),
        #f8faff;
    overflow: hidden;
    padding: 112px 0 96px;
    position: relative;
}

#page-home .aha-home-services::before {
    background:
        linear-gradient(90deg, rgba(0, 25, 76, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(0, 25, 76, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    inset: 0;
    opacity: 0.58;
    pointer-events: none;
    position: absolute;
}

#page-home .aha-home-services > .container {
    position: relative;
    z-index: 1;
}

#page-home .aha-home-services__heading {
    align-items: flex-end;
    display: flex;
    gap: 34px;
    justify-content: space-between;
    margin-bottom: 42px;
}

#page-home .aha-home-services__copy {
    max-width: 760px;
}

#page-home .aha-home-services .sub-title {
    background: rgba(244, 185, 64, 0.2);
    border: 1px solid rgba(244, 185, 64, 0.35);
    border-radius: 8px;
    color: #8c5b00;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 16px;
    padding: 8px 12px;
}

#page-home .aha-home-services .title {
    color: #00194c;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px;
    max-width: 720px;
}

#page-home .aha-home-services__copy p {
    color: #52637e;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
    max-width: 700px;
}

#page-home .aha-home-services__actions {
    flex: 0 0 auto;
}

#page-home .aha-home-services__button {
    align-items: center;
    background: #00194c;
    border: 1px solid #00194c;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    line-height: 1;
    min-height: 52px;
    padding: 16px 20px;
    text-transform: uppercase;
}

#page-home .aha-home-services__button:hover {
    background: #2190f4;
    border-color: #2190f4;
    color: #fff;
}

#page-home .aha-home-services__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#page-home .aha-home-services__card {
    background: #fff;
    border: 1px solid rgba(0, 25, 76, 0.1);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 25, 76, 0.09);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    transition: box-shadow 220ms ease, transform 220ms ease;
    width: 100%;
}

#page-home .aha-home-services__card:hover {
    box-shadow: 0 30px 84px rgba(0, 25, 76, 0.16);
    transform: translateY(-4px);
}

#page-home .aha-home-services__media {
    background: #d9eaff;
    display: block;
    height: 174px;
    overflow: hidden;
    position: relative;
}

#page-home .aha-home-services__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
    width: 100%;
}

#page-home .aha-home-services__card:hover .aha-home-services__media img {
    transform: scale(1.04);
}

#page-home .aha-home-services__media::after {
    background: linear-gradient(180deg, rgba(0, 25, 76, 0.02) 0%, rgba(0, 25, 76, 0.58) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

#page-home .aha-home-services__card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px 22px 22px;
}

#page-home .aha-home-services__icon {
    align-items: center;
    background: rgba(33, 144, 244, 0.1);
    border: 1px solid rgba(33, 144, 244, 0.18);
    border-radius: 8px;
    color: #2190f4;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    margin-bottom: 18px;
    width: 46px;
}

#page-home .aha-home-services__icon img {
    height: 28px;
    object-fit: contain;
    width: 28px;
}

#page-home .aha-home-services__icon i {
    font-size: 22px;
    line-height: 1;
}

#page-home .aha-home-services__card h3 {
    color: #00194c;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 12px;
}

#page-home .aha-home-services__card h3 a {
    color: inherit;
}

#page-home .aha-home-services__card h3 a:hover {
    color: #2190f4;
}

#page-home .aha-home-services__card p {
    color: #5b6d86;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
}

#page-home .aha-home-services__link {
    align-items: center;
    color: #0a64b7;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
    line-height: 1;
    margin-top: auto;
    text-transform: uppercase;
}

#page-home .aha-home-services__link:hover {
    color: #00194c;
}

@media (max-width: 1199.98px) {
    #page-home .aha-home-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    #page-home .aha-home-services {
        padding: 88px 0 78px;
    }

    #page-home .aha-home-services__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    #page-home .aha-home-services .title {
        font-size: 40px;
    }
}

@media (max-width: 767.98px) {
    #page-home .aha-home-services {
        padding: 74px 0 66px;
    }

    #page-home .aha-home-services .title {
        font-size: 34px;
        line-height: 1.12;
    }

    #page-home .aha-home-services__actions,
    #page-home .aha-home-services__button {
        width: 100%;
    }

    #page-home .aha-home-services__grid {
        grid-template-columns: 1fr;
    }

    #page-home .aha-home-services__media {
        height: 210px;
    }

    #page-home .aha-home-services__card h3 {
        font-size: 21px;
    }
}
