body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Header */
header {
  background-color: #0056b3;
  color: #fff;
  padding: 10px 20px;
}

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

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-title .logo {
  max-height: 40px;  /* Logo réduit */
  width: auto;
  display: block;
}

.logo-title h2 {
  margin: 0;
  font-size: 28px;
}

/* Menu horizontal sous le titre */
.main-nav {
  margin-top: 10px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Langue sous le menu */
.lang-switch {
  margin-top: 10px;
}

.lang-switch select {
  padding: 5px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 20px;
  background-color: #e1f0ff;
}
.hero-box {
  display: inline-block;
  max-width: 800px;
}
.hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff5a5f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}
.btn:hover {
  background-color: #e04e52;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
}
.services, .offers, .affiliate-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  min-width: 150px;
  flex: 1;
}

/* Contact */
#contact form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contact input,
#contact textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}
#contact textarea {
  resize: vertical;
  min-height: 120px;
}
#contact button {
  padding: 12px 20px;
  background-color: #ff5a5f;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
#contact button:hover {
  background-color: #e04e52;
}

/* Footer */
footer {
  background-color: #0056b3;
  color: #fff;
  padding: 20px;
  text-align: center;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive pour mobile */
@media (max-width: 600px) {
  .logo-title .logo {
    max-height: 30px;
  }

  .logo-title h2 {
    font-size: 22px;
  }

  .main-nav {
    gap: 15px;
  }
}