/* Global Styles */
body {
   font-family: 'Poppins', sans-serif;
   margin: 0;
   padding: 0;
   background-color: #f8f9fa;
   color: #333;
}

.container {
   width: 90%;
   max-width: 1200px;
   margin: 0 auto;
}

/* Header Section */
.header_section {
   background-color: #333;
   color: white;
   padding: 15px 0;
}

.header_content {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo_title {
   display: flex;
   align-items: center;
}

.logo_img {
   width: 60px;
   height: auto;
   margin-right: 15px;
}

.company_title {
   font-size: 24px;
   color: #ffffff;
   font-weight: bold;
   margin: 0;
}

.menu ul {
   list-style: none;
   display: flex;
   margin: 0;
   padding: 0;
}

.menu ul li a {
   color: white;
   text-decoration: none;
   font-weight: bold;
   text-transform: uppercase;
   margin: 0 10px;
   padding: 5px 10px;
   border: 1px solid #000;
   transition: background-color 0.3s ease, color 0.3s ease;
}

.menu ul li a:hover {
   background-color: white;
   color: #333;
}

.urgent_banner {
   text-align: center;
   background-color: #d9534f;
   padding: 10px;
}

.btn-urgent {
   color: white;
   text-transform: uppercase;
   text-decoration: none;
   font-weight: bold;
}

/* Banner Section */
.banner {
   position: relative;
   text-align: center;
}

.banner_img {
   width: 100%;
   height: auto;
}

.banner-text {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   color: white;
   background: rgba(0, 0, 0, 0.6);
   padding: 20px;
   border-radius: 5px;
   text-align: center;
}

.banner-text h1 {
   font-size: 36px;
   margin-bottom: 10px;
}

.banner-text p {
   font-size: 18px;
}

/* About Section */
.about {
   padding: 30px 0;
   background-color: #ffffff;
   text-align: center;
}

.about h1 {
   font-size: 28px;
   margin-bottom: 20px;
}

.about p {
   font-size: 16px;
   line-height: 1.6;
}

/* Services Section */
.services {
   padding: 30px 0;
   text-align: center;
   background-color: #ffffff;
}

.services h1 {
   font-size: 28px;
   margin-bottom: 20px;
}

.service-items {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-around;
}

.service-item {
   max-width: 300px;
   margin: 20px;
   text-align: center;
}

.service-item img {
   width: 100%;
   height: auto;
   border-radius: 5px;
   margin-bottom: 15px;
}

.service-item h3 {
   font-size: 20px;
   margin-bottom: 10px;
   color: #333;
   text-transform: uppercase;
}

.service-text {
   font-size: 16px;
   line-height: 1.6;
   text-align: justify; /* Texte justifié */
   color: #555;
}

/* Contact Section */
.contact {
   padding: 30px 0;
   background-color: #eee;
   text-align: center;
}

.contact h1 {
   font-size: 28px;
   margin-bottom: 20px;
}

.contact_details p {
   font-size: 16px;
   margin: 10px 0;
}

.contact_form {
   margin: 20px auto;
   max-width: 600px;
   background: #ffffff;
   padding: 20px;
   border-radius: 5px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact_form form {
   display: flex;
   flex-direction: column;
}

.contact_form label {
   font-weight: bold;
   margin-bottom: 5px;
}

.contact_form input,
.contact_form textarea {
   margin-bottom: 15px;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 5px;
   font-size: 16px;
}

.contact_form button {
   background-color: #d9534f;
   color: white;
   border: none;
   padding: 10px;
   border-radius: 5px;
   font-size: 16px;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.contact_form button:hover {
   background-color: #c9302c;
}

/* Map Section */
.map_section {
   text-align: center;
   padding: 30px 0;
   background-color: #f8f9fa;
}

.map_frame {
   display: inline-block;
   width: 90%;
   max-width: 600px;
   border: 3px solid #ddd;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map_frame iframe {
   width: 100%;
   height: 450px;
   border: none;
}

/* Footer */
footer {
   text-align: center;
   background-color: #333;
   color: white;
   padding: 10px 0;
   font-size: 14px;
   margin-top: 20px;
}