body {
    font-family: trebuchet MS,sans-serif, Arial;
    margin: 20px;
    padding: 20px;
}

header {
    display: flex;
    align-items: center;
    background-color: #1274d6;
    color: rgb(238, 12, 12);
    padding: 15px 30px;
}

header img {
    height: 50px;
    margin-right: 20px;
}

nav {
    margin-left: auto;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.section {
    padding: 40px 30px;
}

.section:nth-child(odd) {
    background-color: #f2f2f2;
}

.section h2 {
    color: #003366;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    background-color: #003366;
    color: white
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 10px;
}

.expert-item {
    flex: 1 1 200px;
    background-color: rgba(3, 170, 53, 0.747);
    padding: 20px;
    border-left: 5px solid #f11823;
    box-shadow: 0 2px 5px rgba(214, 3, 3, 0.1);
}

.expert-item h3 {
    margin-top: 10px;
    color: #003366;
}

footer {
    background-color: #1274d6;
    color: white;
    text-align: center;
    padding: 15px 0;
}

/* copie CSS contactez nous */


.contact-box {
    max-width: 600px;
    margin: 30px auto;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.contact-item {
    margin-top: 15px;
}

.contact-item i {
    color: #2980b9;
    margin-right: 10px;
}

.horaires {
    margin-top: 20px;
}
/* copie CSS a propos de nous */

.info-box {
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-box p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}

.info-box ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.info-box ul li {
  margin-bottom: 8px;
}
/* copie CSS nos services */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f7fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

h1 {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 1.2rem;
  color: #004d66;
  margin-bottom: 15px;
}

.card ul {
  padding-left: 20px;
}

.card ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.p5nosservices {
  text-align: center;
  margin-top: 40px;
}
/* contact css */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 150px;
  margin: 0 auto;
}

.contact-buttons a {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
  width: 150px;
  text-align: center;
}

.phone-button {
  background-color: #28a745;
}

.phone-button:hover {
  background-color: #218838;
}

.email-button {
  background-color: #007bff;
}

.email-button:hover {
  background-color: #0056b3;
}
/* bouton raccourcis */
.btn-bleu {
  background-color: #007bff; /* Bleu */
  color: white;              /* Texte blanc */
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-bleu:hover {
  background-color: #0056b3; /* Bleu plus foncé au survol */
}