.services-grid-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    font-family: 'Inter', sans-serif;
}

.service-card {
    background: #222; /* Nowy kolor tła */
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #ffcc00;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.service-card p {
    line-height: 1.5;
    font-size: 0.95rem;
}
