/* General Body and Container Styling */
/* public/css/services.css */

/* General Body and Container Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif; /* Keep Montserrat for services section */
    background: black url('../images/2.png') no-repeat center center;
    color: #0a0a0a; /* White text color */
    box-sizing: border-box;
    /* Remove the flex centering from here */
}

.services-container {
    width: 90%; /* Adjust as needed, or use max-width */
    max-width: 1200px; /* Max width for larger screens */
    padding: 40px; /* Keep padding */
    margin: 0 auto; /* Center the services container horizontally */
    box-sizing: border-box;
    margin-top: 20px; /* You might need to adjust this value */
    background: black url('/images/2.png') no-repeat center center
}


/* Header Styling */
.services-header h1 {
    font-size: 3.5em; /* Large font size for "NOS SERVICES" */
    color: #fffdfd;
    margin-bottom: 10px;
    position: relative; /* For the underline effect */
    display: inline-block; /* To make the underline fit the text */
}

.services-header h1::after {
    content: '';
    display: block;
    width: 80%; /* Adjust width of the red underline */
    height: 4px; /* Thickness of the red underline */
    background-color: #e50000; /* Red color for the underline */
    position: absolute;
    bottom: -5px; /* Adjust vertical position */
    left: 0;
    
}

.services-header p {
    font-size: 1em;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 40px;
    max-width: 700px; /* Limit paragraph width for readability */
    color: #ffffff;
}

/* Content Section (List + Illustration) */
.services-content {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 50px; /* Space between list and illustration */
    align-items: center; /* Vertically align items */
    
}

.services-list {
    flex: 1; /* Allow list to grow and shrink */
    min-width: 300px; /* Minimum width before wrapping */
}

.services-list ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 1.2em;
    margin-bottom: 25px; /* Space between list items */
    font-weight: 700; /* Make list items bold */
    position: relative;
    padding-left: 30px; /* Space for custom bullet */
     color: #ffffff;
}

.services-list li::before {
    content: '';
    display: block;
    width: 12px; /* Size of the custom bullet */
    height: 12px;
    background-color: #e50000; /* Red bullet color */
    border-radius: 50%; /* Make it circular */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.services-illustration {
    flex: 1; /* Allow illustration to grow and shrink */
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px; /* Minimum width before wrapping */
}

.services-illustration img {
    max-width: 100%; /* Ensure image scales down */
    height: auto;
    display: block; /* Remove extra space below image */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2.5em;
    }

    .services-header p {
        font-size: 0.9em;
    }

    .services-content {
        flex-direction: column; /* Stack items vertically on smaller screens */
        gap: 30px;
    }

    .services-list li {
        font-size: 1.1em;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 20px;
    }

    .services-header h1 {
        font-size: 2em;
    }

    .services-list li {
        font-size: 1em;
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .services-list li::before {
        width: 10px;
        height: 10px;
    }
}
html, body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.services-container {
    flex: 1;
}
/* Pied de page comme les autres pages */






