* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-color: #003366;
  padding: 0 20px;
}

header .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 15px 0;
  display: inline-block;
}

header .logo span {
  color: #ff9900;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

nav ul li a {
  color: #fff;
  padding: 10px 15px;
  display: block;
  font-size: 15px;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #0055aa;
  text-decoration: none;
  border-radius: 3px;
}

main {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #003366;
}

h2 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: #003366;
  border-bottom: 2px solid #0066cc;
  padding-bottom: 8px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.hero {
  background-color: #003366;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 25px;
}

.hero .btn {
  background-color: #ff9900;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

.hero .btn:hover {
  background-color: #e68a00;
  text-decoration: none;
}

.video-section {
  text-align: center;
  margin: 40px 0;
}

.video-section video {
  width: 100%;
  max-width: 700px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.services-home {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.service-card {
  flex: 1;
  min-width: 220px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.temoignages {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 4px;
  margin: 40px 0;
}

.temoignages-liste {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.temoignage {
  flex: 1;
  min-width: 220px;
  background-color: #fff;
  padding: 20px;
  border-left: 4px solid #0066cc;
  border-radius: 0 4px 4px 0;
}

.temoignage .auteur {
  font-weight: bold;
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

.equipe {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.equipe figure {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.equipe figure img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0066cc;
}

.equipe figcaption {
  margin-top: 10px;
  font-size: 14px;
}

.equipe figcaption strong {
  display: block;
  font-size: 16px;
  color: #003366;
}

.service-detail {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 25px;
  margin-bottom: 25px;
}

.tableau-tarifs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 15px;
}

.tableau-tarifs th,
.tableau-tarifs td {
  border: 1px solid #ccc;
  padding: 10px 14px;
  text-align: center;
}

.tableau-tarifs th {
  background-color: #003366;
  color: #fff;
}

.tableau-tarifs tr:nth-child(even) {
  background-color: #f5f5f5;
}

.tableau-tarifs .highlight {
  background-color: #fff3cd;
  font-weight: bold;
}

.galerie {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.galerie-item {
  flex: 1;
  min-width: 260px;
  max-width: 350px;
}

.galerie-item picture img,
.galerie-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: block;
}

.galerie-item p {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
  margin-bottom: 0;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.contact-form {
  flex: 2;
  min-width: 280px;
}

.contact-info {
  flex: 1;
  min-width: 220px;
}

.champ {
  margin-bottom: 18px;
}

.rgpd {
  display: flex;
  align-items: start;
  justify-content: start;
  text-wrap: nowrap;
  gap: 10px;
  cursor: pointer;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .radios,
.contact-form .checkboxes {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.contact-form .radios label,
.contact-form .checkboxes label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 10px;
  text-wrap: nowrap;
}

.contact-form button {
  background-color: #003366;
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0055aa;
}

.contact-info address {
  font-style: normal;
  line-height: 1.8;
}

.contact-info iframe {
  width: 100%;
  height: 250px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-top: 15px;
}

#notif {
  display: none;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 20px;
}

footer {
  background-color: #222;
  color: #ccc;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-contenu {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #aaa;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col address a {
  color: #aaa;
}

.footer-bas {
  max-width: 1100px;
  margin: 25px auto 0;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-bas a {
  color: #888;
}

.rgpd input {
  width: 15px;
  height: 15px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 26px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li a {
    padding: 8px 10px;
  }

  .services-home,
  .temoignages-liste,
  .equipe,
  .galerie,
  .contact-wrapper {
    flex-direction: column;
  }

  .galerie-item {
    max-width: 100%;
  }
}
