.services-section {
    background: #f6f8fc;
    padding: 60px 0 250px 0;
    margin: 0;
    justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;

}
.services-head {
    text-align: center;
    margin-bottom: 38px;
    width: 80%;
}
.services-subtitle {
    color: #ff3951;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}
.services-title {
    font-size: 2.4rem;
    line-height: 1.16;
    font-weight: 800;
    color: #182750;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 38px;
    max-width: 1250px;
    margin: 0 auto;
}

.services-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 38px 0 rgba(24,39,80,0.09);
    padding: 36px 32px 34px 30px;
    min-height: 154px;
    position: relative;
    gap: 24px;
    transition: box-shadow 0.17s, transform 0.17s;
}

.services-card:hover {
    box-shadow: 0 16px 48px 0 rgba(255,57,81,0.12), 0 8px 36px 0 rgba(24,39,80,0.08);
    transform: translateY(-8px) scale(1.02);
}

.services-card-icon {
    flex-shrink: 0;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #fff3f5 40%, #f4f7fc 100%);
    box-shadow: 0 4px 16px 0 rgba(255,57,81,0.08);
    margin-right: 16px;
}

.services-card-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    border-radius: 30px;
}

.services-card-content {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.services-card-title {
    font-size: 1.26rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1d223a;
    letter-spacing: -0.02em;
}
.services-card-desc {
    font-size: 1.07rem;
    color: #475069;
    margin: 0 0 13px 0;
    opacity: 0.96;
}

.services-card-link {
    font-size: 1.06rem;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: color 0.12s;
}
.services-card-link:hover {
    color: #cc233c;
    transition: 300ms ease-in-out;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-float{
        margin-top: 0 !important;
    }
    .services-card-title{
        padding-top: 10px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .services-section {
        padding: 100px 0 38px 0;
        padding-right: 20px;
  padding-left: 20px;

    }
    .services-card {
        border-radius: 22px;
        flex-direction: column;

    }
    .services-card-icon {
        width: 50px; height: 50px; border-radius: 16px;
    }
    .services-card-icon img { width: 100px; height: 100px; }
}

@media (max-width: 600px) {
    .services-title { font-size: 1.22rem; }
}


.cta-float {
    position: relative;
    margin: -120px auto 0 auto;
    width: 75%;
    min-height: 190px;
    border-radius: 44px;
    background: #ff3951;
    box-shadow: 0 20px 90px 0 #ff395133, 0 2px 8px 0 rgba(24,39,80,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    overflow: hidden;
}


.cta-float-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 56px;
}

.cta-float-text {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.19;
    letter-spacing: -.01em;
    text-shadow: 0 2px 10px #e72b4e36;
}

.cta-float-btn {
    background: #fff;
    color: #ff3951;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.17rem;
    padding: 17px 38px;
    min-width: 130px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 24px 0 #ff395133;
    transition: box-shadow 0.14s, color 0.12s, background 0.14s, transform 0.14s;
    margin-left: 22px;
}
.cta-float-btn:hover,
.cta-float-btn:focus-visible {
    background: #ff3951;
    color: #fff;
    box-shadow: 0 6px 32px #d71a3933;
    transform: translateY(-4px) scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
    .cta-float-content { flex-direction: column; padding: 36px 12px 36px 12px; gap: 28px; }
    .cta-float { min-height: 180px; }
    .cta-float-text { font-size: 1.12rem; text-align: center; }
    .cta-float-btn { font-size: 1.03rem; padding: 13px 22px; min-width: 90px; min-height: 44px; }
}
@media (max-width: 600px) {
    .cta-float { width: 99vw; border-radius: 24px; }
    .cta-float-content { min-height: 96px; }
}
