/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#c51212;
}

h1, h2, h3 {
    text-align: center;
}

p {
    line-height: 1.6;
    margin: 10px 0;
    color: #333;
}





/* Styles pour la section des services */
.service_page {
    padding: 40px 20px;
    background-color: #c51212;
    margin-top: 100px;
}

.service_page h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2.3em;
}

.service_page p{
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    text-align: justify;
}

.text-int {
    max-width: 800px;
    margin: auto;
}

.service_background {
    background-color: #c51b1b;
}

.service_section {
    padding: 20px 10px;
    border-bottom: 1px solid #dddddd;
    margin: 30px auto;
    max-width: 1220px;
    border-radius: 10px;
    
}

.service_col_page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1220px;
    margin: auto;
}

.colonne1 {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    padding: 10px;
    min-width: 250px;
    color: #333;
    text-align: justify;
}

.colonne1 h3{
    font-size: 1.5em;
}

.image1 {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin: 0 auto 20px;
    display: block;
}

.image2 {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.btn-grand {
    display: inline-block;
    padding: 10px 20px;
    background-color: orange;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 1.2em;
}

.btn-grand:hover {
    background-color: #c51212;
  
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
    text-align: left;
}

/* Media Queries pour rendre la page responsive */
@media (max-width: 1024px) {
    .colonne1 {
        flex: 1 1 calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .colonne1 {
        flex: 1 1 40%%;
        margin-bottom: 20px;
    }
}

/* Styles pour les alternances de couleurs de section */
.service_section:nth-child(even) {
    background-color: #f9f9f9;
}

.service_section:nth-child(odd) {
    background-color: #cfcfcf;
}
