.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  filter: contrast(1.1) saturate(1.4);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-weight: 100;
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.hero-content .btn-discover {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2em;
  color: #fff;
  background-color: rgba(128, 83, 77, 0.7);
  text-decoration: none;
  transition: background-color 0.3s;
}

.hero-content .btn-discover:hover {
  background-color: rgba(88, 65, 60, 0.7);
}

.about-section {
  padding: 40px 20px;
  text-align: center;
}

.about-section h2 {
  font-weight: 400;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #424488;
}

.about-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #424488;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.about-grid div {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  max-width: 100%;
}

.mentions-top {
  display: flex;
  align-items: center;
  padding: 50px 50px;
  height: 100px;
  background-color: #fcd7c1;
}

.mentions-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #030660;
}

.mentions-contact-info {
  background: #f7f7f7;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section h2 {
    font-size: 2em;
  }

  .about-section p {
    font-size: 1em;
  }
  .about-grid img {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-section h2 {
    font-size: 1.8em;
  }

  .about-section p {
    font-size: 0.95em;
  }
  .about-grid img {
    width: 70%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 20px 10px;
  }

  .about-section h2 {
    font-size: 1.5em;
  }

  .about-section p {
    font-size: 0.9em;
  }
  .about-grid img {
    width: 60%;
    border-radius: 15px;
  }
}

.destinations-section {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}
.destinations-section h2 {
  font-weight: 400;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #424488;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}
.destinations-grid div {
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.destinations-grid h3 {
  font-weight: 600;
  font-size: 1.5em;
  color: #424488;
}
.destinations-grid img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-bottom: 15px;
}
.destinations-grid .btn-discover {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #b4b5d0;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.destinations-grid .btn-discover:hover {
  background-color: #0056b3;
}

.ready-section {
  padding: 40px 20px;
  text-align: center;
}

.ready-section h2 {
  font-weight: 400;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #424488;
}

.ready-section p.slogan {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #424488;
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ready-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}

.ready-grid div {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ready-grid h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #424488;
}

.ready-grid i {
  font-size: 2em;
  margin-bottom: 10px;
  color: #f8833f;
}

.ready-grid p.slogan {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #424488;
}

.ready-grid p {
  font-size: 1em;
  color: #424488;
}

@media (max-width: 1024px) {
  .ready-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ready-section h2 {
    font-size: 2em;
  }

  .ready-section p.slogan {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .ready-grid {
    grid-template-columns: 1fr;
  }

  .ready-section h2 {
    font-size: 1.8em;
  }

  .ready-section p.slogan {
    font-size: 1.1em;
  }

  .ready-grid div {
    padding: 15px;
  }

  .ready-grid h3 {
    font-size: 1.2em;
  }

  .ready-grid i {
    font-size: 1.5em;
  }

  .ready-grid p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .ready-section {
    padding: 20px 10px;
  }

  .ready-section h2 {
    font-size: 1.5em;
  }

  .ready-section p.slogan {
    font-size: 1em;
  }

  .ready-grid div {
    padding: 10px;
  }

  .ready-grid h3 {
    font-size: 1em;
  }

  .ready-grid i {
    font-size: 1.2em;
  }

  .ready-grid p {
    font-size: 0.8em;
  }
}

.person-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.person-section h2 {
  color: #424488;
  text-align: center;
}

.person-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  gap: 20px;
}

.person-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.person-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.person-nom h3 {
  margin: 0;
  font-size: 18px;
  color: #424488;
}

.person-pays {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  gap: 5px;
}

.person-details p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.person-details .btn-more {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #acadcb;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.person-details .btn-more:hover {
  background-color: #8e8fa9;
}

@media (max-width: 768px) {
  .person-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .person-image img {
    width: 80px;
    height: 80px;
  }

  .person-details .btn-more {
    width: 100%;
    text-align: center;
  }
}

.human-details {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 8px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.details-grid .grid-item {
  font-size: 16px;
  color: #333;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.details-grid .grid-item strong {
  display: block;
  font-size: 14px;
  color: #424488;
}

.human-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.human-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
}

.human-name h1 {
  text-align: center;
  font-size: 24px;
  color: #333;
}

.human-info {
  text-align: center;
}

.human-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #424488;
}

.human-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.human-contact {
  text-align: center;
  margin-top: 20px;
}

.human-contact h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #424488;
}

.human-contact .contact-icon {
  font-size: 24px;
  color: #f8833f;
  margin-bottom: 10px;
}

.human-contact a {
  font-size: 16px;
  color: #424488;
  text-decoration: none;
}

.human-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .human-image img {
    width: 120px;
    height: 120px;
  }

  .human-name h1 {
    font-size: 20px;
  }

  .human-info h3,
  .human-contact h4 {
    font-size: 18px;
  }
}

.human-housing {
  text-align: center;
  margin-top: 20px;
}

.human-housing h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0073aa;
}

.housing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.housing-grid .grid-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .housing-grid {
    grid-template-columns: 1fr;
  }
}

.safety-section {
  font-family: "Baskervville", serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #424488;
  text-align: center;
}

.safety-header h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #424488;
}

.safety-header p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #424488;
}

.safety-steps {
  margin-bottom: 40px;
}

.step {
  margin-bottom: 30px;
}

.step-title {
  font-size: 18px;
  font-weight: bold;
  color: #ff9900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #424488;
  text-align: center;
}

.step ul h3 {
  color: #424488;
  text-align: center;
}

.faq-section h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #424488;
}

.faq-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #424488;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-list li::after {
  content: ">";
  position: absolute;
  right: 0;
  color: #ff9900;
  font-size: 16px;
  transform: rotate(90deg);
}

.contact-section {
  font-family: "Baskervville", serif;
  text-align: center;
  color: #424488;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #424488;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.info-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 220px;
  text-align: center;
}

.info-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #424488;
}

.info-box p {
  font-size: 14px;
  margin: 5px 0;
  color: #424488;
}

.info-box i {
  font-size: 24px;
  color: #f8833f;
  margin-bottom: 10px;
}

.contact-form {
  background-color: #e6e6ff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #424488;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #424488;
  font-family: "Baskervville", serif;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #f8833f;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Baskervville", serif;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: rgb(200, 121, 3);
}

.social-media {
  text-align: center;
}

.social-media h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #424488;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  text-align: center;
  font-size: 14px;
  color: #424488;
}

.social-icon i {
  font-size: 24px;
  color: #f8833f;
  margin-bottom: 5px;
}

.registration-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Baskervville", serif;
  color: #424488;
}

.registration-form h2,
.registration-form h3 {
  font-size: 24px;
  color: #424488;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #424488;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #424488;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.form-group input[type="checkbox"] {
  width: auto;
}

.photo-upload {
  text-align: center;
  margin-top: 20px;
}

.photo-upload input[type="file"] {
  display: block;
  margin: 10px auto;
}

.photo-box {
  width: 150px;
  height: 150px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
}

.photo-box span {
  color: #ff9900;
  font-size: 36px;
}

.btn-submit {
  display: block;
  width: 100%;
  background-color: #ff9900;
  color: white;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Baskervville", serif;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #e68a00;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 240px;
}

.info-text {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .form-row .form-group {
    min-width: 100%;
  }

  .registration-form h2,
  .registration-form h3 {
    font-size: 20px;
  }
}
