/* ============================================
   OUR-SERVICES / FEATURES – REDESIGN
   Nur CSS – kein HTML geändert
   ============================================ */

#our-services {
    background: #F4F3F1;
    padding: 60px 0;
    border-top: 1px solid #E4E2DE;
}

#our-services .features {
    /* Reset */
}

/* Jede Feature-Box als Karte */
#our-services .feature {
    background: #ffffff;
    border: 1px solid #E4E2DE;
    border-radius: 8px;
    padding: 28px 28px 28px 24px !important;
    margin-bottom: 20px;
    display: flex !important;
    align-items: flex-start;
    gap: 0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Grüner Akzentbalken links */
#our-services .feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #28a745;
    border-radius: 8px 0 0 8px;
}

#our-services .feature:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

/* Icon-Bereich – ausblenden da Font Awesome nicht lädt */
#our-services .feature .icon {
    display: none !important;
}

/* Text-Bereich */
#our-services .feature .px-4 {
    padding: 0 !important;
    flex: 1;
}

/* Titel */
#our-services .feature h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.3;
}

#our-services .feature h5 a,
#our-services .feature h5 a font {
    color: #1C1C1E !important;
    text-decoration: none;
}

/* Text */
#our-services .feature p {
    font-size: 0.88rem;
    color: #5A5A5A;
    line-height: 1.75;
    margin: 0;
}

#our-services .feature p a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

#our-services .feature p a:hover {
    text-decoration: underline;
}