/* Sekcja usług */
.services-section {
    text-align: center;
    padding: 80px 0;
    background-color: #f8f8f8;
}

/* Kontener */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Podtytuł */
.services-subtitle {
    color: #2EB872;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Nagłówek */
.services-title {
    font-size: 32px;
    font-weight: 900;
    color: #111;
    margin-bottom: 40px;
}

/* Grid z kartami */
.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Karty */
.service-card {
    background: white;
    padding: 30px;
    width: 250px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Ikony w kartach */
.service-card img {
    width: 50px;
    margin-bottom: 15px;
}

/* Tytuły w kartach */
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

/* Opisy w kartach */
.service-card p {
    font-size: 16px;
    color: #666;
}

/* Efekt hover na kartach */
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1024px) {
    .services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        width: 220px;
    }
}

@media screen and (max-width: 768px) {
    .service-card {
        width: 90%;
    }

    .services-title {
        font-size: 26px;
    }
}
