﻿.services-section {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 110px;
}

.service-card {
    display: flex;
    flex: auto;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid #11101b;
    max-width: 400px;
}

.service-card img {
    width: 100%;
    height: 300px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    display: block;
}

.card-content {
    display: flex;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.service-card h3 {
    font-size: 28px;
    text-align: left;
}

.price {
    display: block;
    font-weight: bold;
}

/* mobile */
@media (max-width: 750px) {
    .services-section {
        gap: 10px;
    }

    .service-card {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .price {
        font-size: 20px;
    }
}
