/* Base Styles */
body {
    background-image: url('/images/equipement.png');
}

.services-section {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.001);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-section h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.services-list {
    list-style-type: disc;
    text-align: left;
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.services-list li {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.services-list p {
    margin-top: 0.5rem;
    font-weight: normal;
    line-height: 1.6;
}

/* Responsive widths for different screen sizes */
@media (min-width: 1910px) {

    /* 4K displays */
    .services-section {
        width: 50%;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {

    /* Tablets and smaller laptops */
    .services-section {

        max-width: 90%;
    }
}

@media (max-width: 768px) {

    /* Mobile devices */
    .services-section {
        max-width: 95%;
    }
}