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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #000;
}

/* En-tête */
header {
  background-color: #000;
  color: #fff;
  padding: 30px 20px 0;
}

.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.header-top h1 {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #111;
  flex-wrap: wrap;
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}
a:hover {
  color: #fc0202;
}
.email {
  color: white;
  font-size: 14px;
}

/* Sections */
.content-section1,
.content-section2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  min-height: 100vh;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.content-section2 {
  background-color: #000;
  color: white;
}

.text {
  flex: 1;
  padding: 20px;
}

.text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.text p {
  font-size: 16px;
}

.image,
.image-with-button {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.image img,
.image-with-button img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Boutons */
.contact-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

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

/* Pied de page */
footer {
  background-color: #000;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  flex-wrap: wrap;
}

.footer-email {
  font-size: 14px;
}
