main {
    /* background: #e3e3e3; */
    min-height: 1000px;
    margin-top: 141px;
    transition: filter 0.5s ease;
    /* Transition progressive pour le flou */
    /* color: white; */
}

.blur {
    filter: blur(6px);
}

p{
    color: black;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0% 10%;
}

.hero {
    margin-bottom: 50px;
}

.hero h1 {
    text-align: center;
    position: relative;
    font-size: 56px;
    color: #2C3E50;
}

.hero h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: rgb(79, 172, 189);
}

.hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero_content p {
    text-align: center;
    font-size: 32px;
    color: black;
}

.cta_button, .service_link {
    display: inline-block;
    text-align: center;
    width: 220px;
    padding: 15px 25px;
    margin-top: 30px;
    border-radius: 50px;
    background-color: rgb(79, 172, 189);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgb(79, 172, 189);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta_button:hover, .service_link:hover {
    background-color: white;
    color: rgb(79, 172, 189);
    border-color: rgb(79, 172, 189);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.cta_button:active, .service_link:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.prestations, .services{
    width: 100%;
    margin: 30px 0;
}

.prestation, .service{
    background-color: #ecf0f1;
    margin: 15px 0;
    padding: 20px;
    border-radius: 8px;
}


h2 {
    position: relative;
    text-align: center;
    font-size: 28px;
    color: #2C3E50;
}

h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(79, 172, 189);
    bottom: 0px;
    left: 0px;
}

h3{
    font-size: 22px;
    color: #2980b9;
}

.prestations p, .services p{
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

main span{
    background-color: powderblue;
}

@media screen and (max-width:1100px) {

}
