.related-services-cards {
    background: #edeefc;
    padding: 0px 20px 60px 20px;
    margin: 0;
}

.related-services-cards__container {
    max-width: 1120px;
    margin: 0 auto;
}

.related-services-cards__title {
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #2c2d64 !important;
    text-align: left !important;
    margin-bottom: 40px !important;
    margin-top: 0px !important;
    line-height: 1.2;
}

.related-services-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.related-services-cards__card {
    background: white;
    border-radius: 12px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.related-services-cards__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.related-services-cards__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-services-cards__card-title {
    font-size: 20px !important;
    font-weight: 600;
    color: #2c2d64;
    margin-bottom: 15px;
    line-height: 1.3;
}

.related-services-cards__description {
    color: #2c2d64;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
    font-size: 16px;
}

.related-services-cards__button {
    background: #2c2d64 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    align-self: flex-start !important;
    min-width: 110px !important;
}

.related-services-cards__button:hover {
    background: #3f4497 !important;
}

.related-services-cards__button--phone {
    background: #2c2d64 !important;
    gap: 12px;
}

.related-services-cards__button--phone:hover {
    background: #3f4497 !important;
}

.related-services-cards__icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}



.related-services-cards__button--phone:hover .related-services-cards__icon {
    transform: none;
}

@media (max-width: 768px) {
    .related-services-cards {
        padding: 40px 15px;
    }

    .related-services-cards__title {
        font-size: 24px !important;
        margin-bottom: 30px;
    }

    .related-services-cards__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .related-services-cards__content {
        padding: 25px;
    }

    .related-services-cards__card-title {
        font-size: 16px;
    }

    .related-services-cards__image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .related-services-cards__title {
        font-size: 16px;
    }

    .related-services-cards__content {
        padding: 20px;
    }

    .related-services-cards__button {
        padding: 12px 24px !important;
        font-size: 16px !important;
    }
}