* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
  overflow-y: auto;
  font-family: Arial, sans-serif;
  background-color: #012c63; 
}
 
.contact-dark-section, .form-container {
  background-color: #b3e5fc;
  padding: 40px 30px;
  box-shadow: 5px 5px 12px #fff;
  border-radius: 10px;
  border: 3px solid gray;
  width: 88%;
  margin: 15px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.choix-client {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.choix-client label {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info {
  
  padding: 40px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-box {
  position: relative;
  z-index: 1;
}
.contact-box h3,
.contact-box p,
.lien {
  text-shadow: 1px 1px 2px black;
}
.info-box-1{
  position: relative;
  background-image: url('../img/img3.jpeg'); 
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  width: 250px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  color: white;
  overflow: hidden;
}
.info-box-2{
  position: relative;
  background-image: url('../img/img4.jpeg'); 
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  width: 250px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  color: white;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); 
  z-index: 0;
  border-radius: 12px;
}
.contact-box i {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-box h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.lien {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}
.footer-links {
  font-size: 14px;
}
.footer {
  background-color: #222;
  color: #eee;
  padding: 30px 15px 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.linkFooter {
  color: #fff;
  font-size: 14px;
}
.linkFooter li {
  color: #fff;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  height: 260px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  margin: 10px;
}

.footer-title {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 4px;
  color: #00d2ff;
}

.footer-text {
  color: #FFF;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #eee;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #00d2ff;
}
.prgF {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding: 7px 0;
  border-top: 1px solid #fff;
  font-size: 10px;
  color: #fff;
  margin-top: 10px;
}

form input,
form textarea {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}
form select {
  width: 90%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}
form textarea {
  resize: none;
  height: 100px;
}

form button {
  background-color: #012c63;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
} 

/* Responsive design */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  .footer-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 800px;
  margin: auto;
}
  .info-box {
    width: 90%;
  }
  .contact-dark-section, .form-container{
    margin: 10px;
    width: 95%;
    padding: 20px 15px;
  }
  form input,
  form textarea,
  form select {
    width: 100%;
  }
}