.flex-content.services {
    padding: 4rem 0;
}

.flex-content.services .subtitle {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.flex-content.services .card {
    --bs-card-spacer-y: 2rem;
    --bs-card-spacer-x: 2rem;
    --bs-card-border-radius: .75rem;
}
.flex-content.services .card:has(.badge) {
    --bs-card-border-width: 2px;
    --bs-card-border-color: var(--accent);
}
.flex-content.services .card-body {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    align-items: flex-start;
}

.flex-content.services .item-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.flex-content.services .item-header .icon-wrap {
    flex-shrink: 0;
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 247, 235);
    border-radius: var(--bs-border-radius-lg);
}
.flex-content.services .item-header svg {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    color: var(--accent);
}

.flex-content.services .card .text *:last-child {
    margin-bottom: 0;
}

.flex-content.services .card .text ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.flex-content.services .card .text ul > li {
    position: relative;
    padding-left: 2.25rem;
}
.flex-content.services .card .text ul > li::before {
    content: "";
    display: block;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    left: 0;
    top: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f59714' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-check h-6 w-6 text-accent flex-shrink-0 mt-0.5'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
}
.flex-content.services .card .text ul > li strong {
    color: var(--primary);
}

@media (max-width: 575px) {
    .flex-content.services {
        padding: 3rem 0;
    }
    .flex-content.services .item {
        flex: 1 0 100%;
    }
}