/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Header Styles */
.header {
  background-color: #f7c600;
  padding: 20px 0;
  box-shadow: 0 4px 2px -2px gray;
}

.header h1 {
  color: #d32f2f;
  margin: 0;
  font-size: 2.5rem;
}

nav {
  text-align: center;
  margin-top: 10px;
}

nav .button {
  margin: 0 15px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #d32f2f;
}

nav .button:hover {
  color: white;
  background-color: #333;
}

/* Main Content Styles */
.main-content {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 20px;
}

.intro, .services, .contact {
  padding: 20px;
}

.intro h2, .services h2, .contact h2 {
  color: #d32f2f;
  font-size: 2rem;
  margin-bottom: 20px;
}

.intro p, .services p, .contact p {
  margin-bottom: 20px;
}

.services ul {
  list-style-type: none;
  padding: 0;
}

.services ul li {
  background-color: #f7c600;
  margin: 5px 0;
  padding: 10px;
  border-radius: 4px;
  color: #333;
  font-weight: bold;
}

/* Header Styles */
.header {
  background-color: #f7c600;
  padding: 20px 0;
  box-shadow: 0 4px 2px -2px gray;
  text-align: center; /* Ajout de cette règle pour centrer le contenu */
}

.header h1 {
  color: #d32f2f;
  margin: 0;
  font-size: 2.5rem;
}


/* Centered Image Styles */
.centered-image {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}

/* Footer Styles */
footer {
  background-color: #f7c600;
  text-align: center;
  padding: 20px 0;
  color: #333;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer a {
  color: #d32f2f;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .main-content {
    padding: 10px;
  }

  .intro h2, .services h2, .contact h2 {
    font-size: 1.5rem;
  }
}
.map-container {
  text-align: center;
}

