.contact-page {
  max-width: 900px;
  margin: 15px auto;
  padding: 20px;
}

.contact-title {
  text-align: center;
  color: #b71c1c;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.contact-intro {
  text-align: center;
  color: #555555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro-bis {
  text-align: center;
  color: #555555;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 30px;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

/* Labels du formulaire */
.contact-label {
  margin-top: 16px;
  font-weight: bold;
  color: #1f1f1f;
}

.contact-input,
.contact-textarea {
  margin-top: 6px;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-btn {
  margin-top: 24px;
  padding: 12px 20px;
  background-color: #ef6c00; 
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #e65100;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #ef6c00;
  box-shadow: 0 0 0 3px rgba(239, 108, 0, 0.3);
}

@media (max-width: 600px) {
  .contact-page {
    margin: 20px 10px;
    padding: 10px;
  }

  .contact-container {
    padding: 16px;
  }

  .contact-title {
    font-size: 1.75rem;
  }
}

.highlighted-section {
  width: 100%;
  background: linear-gradient(to left, #ffd28e, #ffecb3);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  padding: 40px 20px 30px 20px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  background-color: white;
  padding: 30px 40px 30px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 80%;
  border: 1px solid #ef6c00;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close-btn-below {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease;
}

.close-btn-below:hover {
  color: #ef6c00;
}

.popup {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup.show {
  opacity: 1;
  pointer-events: auto;
}

