body {
  font-family: 'REM', sans-serif;
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: #333;
  position: relative;
  overflow-x: hidden;
  }
  body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/fond.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.2;
  z-index: -1;
  }
  .hero-banner {
  width: auto;
  height: 230px;
  background-image: url('../img/bandeau8.jpg');
  background-size: cover;
  background-position: center 47%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  padding-left: 15%;
  color: #222;
  margin-top: 75px;
  box-shadow: inset 0px 10px 12px -10px rgba(0, 0, 0, 0.3);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  }
  .hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0px);
  z-index: 1;
  }
  .hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  width: 80%;
  animation: fadeInUp 0.8s ease-out forwards;
  }
  @keyframes fadeInUp {
  from {
  opacity: 0;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
  }
  @keyframes fadeInUpShifted {
  from {
  opacity: 0;
  transform: translate(-50px, 30px);
  }
  to {
  opacity: 1;
  transform: translate(-50px, 0);
  }
  }
  .hero-content h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
  font-family: 'REM';
  line-height: 1.4;
  }
  .hero-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  font-family: 'REM';
  }
  .separator {
  width: 150px;
  height: 3px;
  background: #c19a5f;
  border-radius: 2px;
  }
  .section-header{
  font-family: 'REM', sans-serif;
  width: 900px;
  margin: 0 auto;
  }
  .section-header h2 {
  font-size: 1.7rem;
  font-weight: 400;
  color: #333;
  margin: 0;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  text-align: center;
  }
  .section-header h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background-color: #c19a5f;
  margin: 30px auto 0;
  }
  .section-header p {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
  }
  .contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  }
  .contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  gap: 50px;
  }
  .contact-info {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  }
  .info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  }
  .icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c19a5f;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  }
  .info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  }
  .info-text strong {
  font-size: 16px;
  font-weight: 600;
  display: block;
  }
  .info-text p,
  .info-text a {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  }
  .contact-form {
  width: 45%;
  background: rgba(255, 255, 255, 0);
  padding: 0px;
  border-radius: 0px;
  text-align: center;
  margin-top: -50px;
  }
  .contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  }
  .contact-form p {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
  font-family: 'REM';
  }
  .contact-form input,
  .contact-form textarea {
  width: 90%;
  max-width: 400px;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-bottom: 1px solid #222;
  border-radius: 0px;
  background-color: #fdf5e600;
  color: #333;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease-in-out;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
  border-color: #b9986c;
  background-color: #fff;
  outline: none;
  }
  .contact-form textarea {
  height: 100px;
  resize: none;
  }
  .contact-form button {
  width: auto;
  max-width: 500px;
  padding: 10px 15px;
  background-color: #c19a5f;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 400;
  font-family: inherit;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
  }
  .contact-form button:hover {
  background: #a0763d;
  }
  @media (max-width: 900px) {
  .contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  }
  .contact-info,
  .contact-form {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  }
  .contact-form {
  margin-top: -20px;
  }
  }
  @media (max-width: 1100px) {
  .section-header {
  padding: 40px 15px;
  max-width: 90%;
  margin-top: -40px;
  }
  .hero-content {
  width: 90%;
  animation: fadeInUpShifted 0.8s ease-out forwards;
  }
  .hero-content h1 {
  font-size: 1.8rem;
  }
  .hero-content p {
  font-size: 1rem;
  }
  }
  @media (max-width: 600px) {
  .hero-banner {
  width: 80%;
  }
  .hero-content {
  width: 90%;
  margin-left: 20px;
  }
  .hero-content h1 {
  font-size: 1.4rem;
  }
  .hero-content p {
  font-size: 0.9rem;
  }
  .section-header h2 {
  font-size: 1.2rem;
  }
  .section-header p {
  font-size: 0.9rem;
  }
  }
  @media screen and (max-width: 768px) {
  body::before {
  background-size: auto 100vh;
  background-position: center;
  background-attachment: scroll;
  }
  }
