body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  border-color: #ffffff;
  border-radius: 2px;
}
  
header {
  background: transparent;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e0e0e0;
}

  
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 20px;
}

.logo-img {
  width: 150px;
  height: 60px;
  object-fit: contain;
  padding: 2px;
  
}

nav a {
  margin: 0 8px;
  padding: 6px 14px;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-size: 15px;
  color: #222;
  font-weight: bold;
  margin-right: 10px;
 text-decoration: none;   
}
.header-phone:hover {
  color: #e62222;
  text-decoration: underline;
}

.login-btn {
  background: #333;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  text-decoration: none;
}
.login-btn:hover {
  background: #555;
  color: #fff;
}


/* body */
.title {
  text-align: center;
  margin-top: 30px;
  font-size: 1.6em;
}
/* Styles spécifiques au formulaire de contact */
.contact-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.contact-info-box, .contact-mention-box {
  background: transparent;
  padding: 10px 20px;
  margin: 20px 0;
  text-align: center;
  border-radius: 6px;
}
.contact-mention-box {
  margin-top: 30px;
  font-size: 12px;
}
.contact-message {
  color: green;
  text-align: center;
  font-weight: bold;
  margin: 15px 0;
}
.contact-form {
  margin: 0 auto;
  width: 100%;
}
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  justify-content: center;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-group.full-width {
  flex: 2;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 6px;
  margin-left: 2px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #000000;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 0;
  background: #fff;
  box-sizing: border-box;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-btn {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: #555;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
  opacity: 1;
}




footer {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 40px 0 20px 0;
  width: 100%;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.footer-logo {
  min-width: 160px;
}
.footer-logo div {
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer-links > div {
  min-width: 120px;
}
.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px !important;
}
.footer-links a, .footer-title {
  display: block;
  
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  color: #222;
  font-size: 14px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "FontAwesome", Arial, sans-serif;
  font-size: 22px;
}
.footer-social a {
  color: #222;
  text-decoration: none;
}

.social-icon {
  width: 24px;
  height: 24px;
  margin: 0 8px;
  vertical-align: middle;
}

.footer-contact-link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: #e62222;
  text-decoration: underline;
}



