body {
  background-color: #4b4b4b;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.header-gray {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  color: #4b4b4b;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.logo {
  width: 150px;
  height: auto;
}

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-link {
  color: #707070;
  text-decoration: none;
}

.lang-link.active {
  color: #F5C242;
  font-weight: bold;
}

.container {
  max-width: 1120px;
  margin: 50px auto;
  padding: 20px;
  background-image: radial-gradient(circle, rgba(255,255,255,1), rgba(255,255,255,0.92));
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container-site-under-construction {
  max-width: 1120px;
  margin: 50px auto;
  padding: 20px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-website-under-construction {
  height: 200px;
  width: auto;
  margin-bottom: 20px;
}
.image-placeholder {
  height: 200px;
  margin-bottom: 20px;
}

.image-placeholder img {
  width: 100%;
  height: auto;
}

.section-1, .section-2 {
  margin-bottom: 40px;
  width: 100%; /* Ensure sections take full width of container */
  max-width: 800px; /* Optional: limit section width for better centering */
}

h1, h2 {
text-align: center;
  color: #4b4b4b;
  font-size: 2.5rem;
}

.section-1 {
  text-align: center;
}

.section-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-title
{
  font-size: 1.2rem;
  font-weight: bold;
  color: #4b4b4b;
  text-align: center;
}
.services-p
{
  font-size: 1rem;
  color: #4b4b4b;
  text-align: center;
}

.form-wrapper-services {
  display: inline-block;
  width: 350px;
  Min-height : 130px;
  border: 0px solid #4b4b4b;
  padding: 20px;
  Margin : 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
}

.services {
  display: flex;
  padding: auto auto;
  color: #4b4b4b;
  font-size: 0.8rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;

}

.construction-note{
	font-size: 1.2rem;
	color : #F5C242;
	text-align: center;
}

.form-wrapper {
width: 500px;
  Align-items: center;
  border: 1px solid #4b4b4b;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-button {
  display: flex;
  padding: auto auto;
  font-size: 1.5rem;
  background-color: #4b4b4b;
  color: #fff;
  align-items: center;
justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  width: 100%; /* Full width of form-wrapper */
  Height: 50px;
}

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

p {
  font-size: 1rem;
   color: #4b4b4b;
}


@media (max-width: 768px) {
  .container {
    padding: 10px;
  margin: 20px 15px;
  }
  .logo {
    width: 120px;
  }
  .form-wrapper {
    width: 100%;
    padding: 15px;

  }
  .section-1, .section-2 {
    max-width: 90%; /* Full width on mobile */
  }
  .services {
  display: grid;
  }
  .form-wrapper-services {
    Min-height : 100px;
    Width : auto;

  }
}