/* Available Services */
.drts-dcf-services {
    margin: 2rem 0;
}

.drts-dcf-intro-statement {
    font-size: 1rem;
    color: #4b5563;
    /* gray-600 */
    margin: 0 0 1.5rem 0;
    line-height: 1.625;
}

.drts-dcf-services .drts-display-element-header {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
}

.drts-dcf-services .drts-display-element-header:before {
    content: "";
    display: block;
    height: 1px;
    background-color: #e0e0e0;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 1;
}

.drts-dcf-services .drts-display-element-header span {
    background-color: #fff;
    /* Match your page background */
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    color: #6d6d6d;
    font-weight: 700;
}

.drts-dcf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}

.drts-dcf-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    /* green-50 to green-100 */
    background: linear-gradient(to right, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    /* green-200 */
    border-radius: 0.75rem;
    transition: transform 0.2s ease;
}

.drts-dcf-service-item:hover {
    transform: translateY(-2px);
}

.drts-dcf-service-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background-color: #22c55e;
    /* green-500 */
    border-radius: 9999px;
    flex-shrink: 0;
}

.drts-dcf-service-name {
    font-weight: 500;
    color: #1f2937;
    /* gray-800 */
    font-size: 1rem;
}