/* Einheitliches Icon Design für alle Bereiche */
.service-box div[style*="linear-gradient"],
.icon-circle {
    background: linear-gradient(135deg, #37ac50, #2d8f42) !important;
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px !important;
    box-shadow: 0 8px 25px rgba(55, 172, 80, 0.3) !important;
    color: white !important;
    font-size: 2.5rem !important;
    transition: all 0.6s ease !important;
}

.service-box div[style*="linear-gradient"]:hover,
.icon-circle:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(55, 172, 80, 0.4) !important;
}

/* MacBook SVG Icon spezielle Behandlung */
.icon-circle svg {
    width: 32px !important;
    height: 32px !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15)) !important;
}

/* Fallback für alte Apple Icon Bilder */
.icon-circle img {
    width: 32px !important;
    height: 32px !important;
    filter: brightness(0) invert(1) !important;
}