/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none; /* Empêche la sélection de texte */
}

body {
  font-family:
    "Maven Pro",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: #000;
  color: #dad4d4;
}

.page-container {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 9063px;
  align-items: center;
  justify-content: start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header styles */
.site-header {
  position: relative;
  border-radius: 0;
  width: 1244px;
  max-width: 100%;
  padding-left: 39px;
  padding-right: 39px;
}

.header-container {
  border-radius: 20px;
  background-color: rgba(169, 87, 5, 0.05);
  border-color: rgba(200, 81, 29, 0.5);
  border-style: solid;
  border-width: 1px;
  display: flex;
  width: 100%;
  padding-right: 20px;
  align-items: stretch;
  gap: 20px;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: stretch;
  gap: 7px;
  font-size: 22px;
  color: rgba(248, 134, 20, 1);
  font-weight: 700;
}

.logo-image {
  aspect-ratio: 0.99;
  object-fit: contain;
  object-position: center;
  width: 94px;
  flex-shrink: 0;
}

.company-name {
  text-shadow: 0px 4px 5px rgba(200, 81, 29, 1);
  margin-top: auto;
  margin-bottom: auto;
  flex-basis: auto;
  font-size: 22px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 39px;
    font-size: 20px;
    color: #dad4d4;
    font-weight: 600;
    flex-wrap: wrap;
}

.nav-link {
  color: #dad4d4;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

.nav-link:hover {
  color: #f88614;
  text-shadow: 0 0 5px rgba(248, 134, 20, 0.3);
}

.nav-link:not(.contact-button)::before,
.nav-link:not(.contact-button)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f88614;
  transition: width 0.3s ease;
}

.nav-link:not(.contact-button)::before {
  top: 0;
  left: 0;
}

.nav-link:not(.contact-button)::after {
  bottom: 0;
  right: 0;
}

.nav-link:not(.contact-button):hover::before,
.nav-link:not(.contact-button):hover::after {
  width: 100%;
}

.contact-button {
  color: #c8511d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 59px;
  border-radius: 15px;
  border: 2px solid #c8511d;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #c8511d;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-button:hover {
  color: white;
  cursor: pointer;
}

.contact-button:hover::before {
  left: 0;
}


/* Main content styles */
.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-title {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 48px;
  font-weight: 600;
  line-height: 70px;
  text-align: center;
  margin-top: 90px;
}

/* Hero section */
.hero-section {
  position: relative;
  display: flex;
  margin-top: 90px;
  width: 1333px;
  max-width: 100%;
  padding-bottom: 29px;
  align-items: start;
  gap: 18px;
  font-size: 40px;
  color: rgba(218, 212, 212, 1);
  font-weight: 600;
  text-align: center;
  line-height: 2;
  flex-wrap: wrap;
}

.section-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 90px;
  flex-shrink: 0;
}

.section-title {
  margin-top: 10px;
  flex-grow: 1;
  flex-shrink: 1;
  width: 1207px;
  flex-basis: auto;
  font-size: 40px;
  font-weight: 600;
  line-height: 2;
  color: rgba(218, 212, 212, 1);
}

/* Section header with icon and title aligned horizontally */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 0;
}

.about-us-section .section-title,
.trust-section .section-title {
  font-size: 48px;
  line-height: 1;
  margin: 0;
}

/* Two-column layout */
.two-column-layout {
  gap: 20px;
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  line-height: normal;
  width: 50%;
}

.column:first-child {
  margin-left: 0;
}

.column:last-child {
  margin-left: 20px;
}

/* Intro section */
.intro-section {
  position: relative;
  border-radius: 20px;
  margin-top: 90px;
  width: 1266px;
  max-width: 100%;
}

.intro-text {
  color: rgba(218, 212, 212, 1);
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  margin-top: 15px;
}

.intro-image {
  aspect-ratio: 1.77;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 20px;
  flex-grow: 1;
}

/* Mission section */
.mission-section {
  position: relative;
  border-radius: 0;
  margin-top: 90px;
  width: 1267px;
  max-width: 100%;
}

.mission-section .background-image,
.commitment-section .background-image,
.cta-section .background-image,
/* Suppression de la classe background-image pour l'image principale */
.page-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Conserver les styles pour les autres images d'arrière-plan */
.mission-section .background-image,
.commitment-section .background-image,
.cta-section .background-image,
.value-header .background-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
}

.mission-section .section-title,
.commitment-section .section-title {
  position: relative;
  color: rgba(217, 217, 217, 1);
  font-size: 40px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  margin: 20px 0;
}

.mission-description {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 26px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  margin-top: 45px;
}

.mission-details {
  position: relative;
  align-self: stretch;
  margin-top: 79px;
}

.mission-image {
  aspect-ratio: 1.08;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 20px;
  flex-grow: 1;
}

.mission-text {
  color: rgba(218, 212, 212, 1);
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  position: relative;
  margin-right: 24px;
}

/* About us section */
.about-us-section {
  position: relative;
  margin-top: 90px;
  width: 665px;
  max-width: 100%;
  padding-bottom: 12px;
  color: rgba(218, 212, 212, 1);
  font-weight: 600;
  text-align: center;
}

/* Team section */
.team-section {
  position: relative;
  border-radius: 20px;
  margin-top: 90px;
  width: 1266px;
  max-width: 100%;
}

.team-description {
  color: rgba(218, 212, 212, 1);
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  align-self: stretch;
}

.team-image {
  aspect-ratio: 1.93;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 20px;
  flex-grow: 1;
}

/* Commitment section */
.commitment-section {
  position: relative;
  border-radius: 0;
  margin-top: 90px;
  width: 1267px;
  max-width: 100%;
}

.commitment-description {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 26px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  margin-top: 37px;
}

.divider {
  aspect-ratio: 142.86;
  object-fit: contain;
  object-position: center;
  width: 100%;
  align-self: stretch;
  margin-top: 71px;
  margin-left: 35px;
  margin-right: 35px;
  max-width: 1133px;
}

.section-subtitle {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 26px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  margin-top: 51px;
}

.history-details {
  position: relative;
  align-self: stretch;
  margin-top: 80px;
}

.history-text {
  color: rgba(218, 212, 212, 1);
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
  align-self: stretch;
  margin-left: 24px;
}

.history-image {
  aspect-ratio: 0.99;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex-grow: 1;
}

/* Trust section */
.trust-section {
  position: relative;
  margin-top: 90px;
  width: 934px;
  max-width: 100%;
  padding-bottom: 12px;
  color: rgba(218, 212, 212, 1);
  font-weight: 600;
  text-align: center;
}

.trust-section .section-header {
  gap: 24px;
}

.trust-description {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  margin-top: 90px;
  max-width: 1300px;
}

/* Benefits section */
.benefits-section {
  position: relative;
  border-radius: 0;
  margin-top: 90px;
  width: 1365px;
  max-width: 100%;
}

.three-column-layout {
  gap: 20px;
  display: flex;
}

.three-column-layout .column {
  width: 33%;
}

.benefit-image {
  aspect-ratio: 1.86;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 0;
  flex-grow: 1;
}

/* Values section */
.values-section {
  position: relative;
  margin-top: 90px;
  width: 100%;
  max-width: 100%;
  padding-bottom: 12px;
  display: flex;
  justify-content: center;
}

.values-section .section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.values-section .section-title {
  font-size: 48px;
  line-height: 1;
  text-align: center;
  position: relative;
  margin: 0;
}

/* Value items */
.value-item {
  position: relative;
  border-radius: 50px;
  display: flex;
  margin-top: 90px;
  width: 1300px;
  max-width: 100%;
  padding: 0 2px 51px;
  flex-direction: column;
  align-items: stretch;
  font-size: 24px;
  color: rgba(218, 212, 212, 1);
  font-weight: 600;
  text-align: center;
  line-height: 40px;
  overflow: hidden;
}

.value-header {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 50px;
  align-self: center;
  min-height: 120px;
  width: 748px;
  max-width: 100%;
  padding: 20px 70px;
  line-height: 2;
  justify-content: center;
  align-items: center;
}

.value-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  line-height: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin: auto 0;
}

.value-description {
  line-height: 40px;
  margin-top: 15px;
  max-width: 100%;
}

/* Testimonials section */
.testimonials-section {
  position: relative;
  border-radius: 0;
  margin-top: 90px;
  width: 1252px;
  max-width: 100%;
}

.testimonial-image {
  aspect-ratio: 3.31;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 0;
  flex-grow: 1;
}

.divider-large {
  aspect-ratio: 166.67;
  object-fit: contain;
  object-position: center;
  width: 1229px;
  margin-top: 90px;
  max-width: 100%;
}

/* Team expertise section */
.team-expertise-section {
  position: relative;
  border-radius: 20px;
  display: flex;
  margin-top: 90px;
  width: 1331px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
}

.team-expertise-section .section-title {
  color: rgba(218, 212, 212, 1);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  align-self: center;
}

.team-details {
  margin-top: 107px;
}

.team-content {
  font-size: 24px;
  color: rgba(218, 212, 212, 1);
  font-weight: 600;
}

.team-subtitle {
  line-height: 2;
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  margin-right: 13px;
}

.team-expertise-text {
  line-height: 40px;
  margin-top: 43px;
}

.team-expertise-image {
  aspect-ratio: 1.69;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 20px;
  margin-top: 15px;
  flex-grow: 1;
}

/* CTA section */
.cta-section {
  position: relative;
  border-radius: 0;
  margin-top: 90px;
  width: 1266px;
  max-width: 100%;
  font-family:
    "Maven Pro",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  color: rgba(248, 134, 20, 1);
  font-weight: 600;
  text-align: center;
}

.cta-title {
  position: relative;
  font-size: 40px;
  line-height: 1;
  align-self: center;
  margin-top: 57px;
}

.cta-subtitle {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  margin-top: 58px;
}

.cta-description {
  position: relative;
  color: rgba(218, 212, 212, 1);
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  margin-top: 77px;
}

.cta-button {
  position: relative;
  border-radius: 15px;
  background-color: rgba(200, 81, 29, 0.1);
  border-color: rgba(200, 81, 29, 1);
  border-style: solid;
  border-width: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 61px;
  width: 233px;
  height: 60px;
  max-width: 100%;
  font-size: 20px;
  padding: 0;
  color: rgba(248, 134, 20, 1);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.cta-button2 {
position: relative;
border-radius: 15px;
background-color: rgba(200, 81, 29, 0.1);
border-color: rgba(200, 81, 29, 1);
border-style: solid;
border-width: 2px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 61px;
width: 233px;
height: 60px;
max-width: 100%;
font-size: 20px;
color: rgba(248, 134, 20, 1);
text-decoration: none;
text-align: center;
white-space: nowrap;
margin-bottom: 40px;
}

.cta-button2:hover {
  background-color: rgba(200, 81, 29, 0.2);
  transform: translateY(-3px);
}

.main-footer {
  background-color: rgba(200, 81, 29, 0.3);
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 42px 129px;
  width: 1520px;
}

@media (max-width: 991px) {
  .footer-content {
    padding: 42px 40px;
    flex-direction: column;
    gap: 40px;
  }
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 22px;
  color: #f88614;
  font-weight: 700;
}

.logo-image-footer {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 94px;
  flex-shrink: 0;
}

.company-name-footer {
  text-shadow: 0px 4px 5px rgba(200, 81, 29, 1);
  font-size: 22px;
}

.social-link {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.social-links {
  display: flex;
  margin-top: 15px;
  margin-left: 12px;
  gap: 22px;
}

.social-links a:hover .social-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover .social-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.social-links a:hover .social-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover .social-icon {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 60px;
}


.footer-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}


@media (max-width: 640px) {
  .footer-navigation {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.footer-link {
  color: #dad4d4;
  font-size: 24px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.footer-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);

}





/* Media queries for responsiveness */
@media (max-width: 991px) {
  .site-header {
    padding-left: 20px;
  }

  .header-container {
    max-width: 100%;
  }

  .main-navigation {
    max-width: 100%;
  }

  .contact-button {
    white-space: initial;
  }

  .page-title {
    max-width: 100%;
    margin-top: 40px;
    font-size: 40px;
    line-height: 65px;
  }

  .hero-section {
    margin-top: 40px;
  }

  .section-title {
    max-width: 100%;
  }

  .two-column-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .column {
    width: 100%;
  }

  .column:last-child {
    margin-left: 0;
  }

  .intro-section {
    margin-top: 40px;
  }

  .intro-text {
    max-width: 100%;
    margin-top: 40px;
  }

  .intro-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .mission-section {
    margin-top: 40px;
  }

  .mission-description {
    max-width: 100%;
    margin-top: 40px;
  }

  .mission-details {
    max-width: 100%;
    margin-top: 40px;
  }

  .mission-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .mission-text {
    max-width: 100%;
    margin-top: 40px;
  }

  .about-us-section {
    max-width: 100%;
    margin-top: 40px;
  }

  .about-us-section .section-title,
  .trust-section .section-title {
    font-size: 40px;
  }

  .section-header {
    flex-direction: row;
    align-items: center;
  }

  .team-section {
    margin-top: 40px;
  }

  .team-description {
    max-width: 100%;
    margin-top: 40px;
  }

  .team-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .commitment-section {
    margin-top: 40px;
  }

  .commitment-description {
    max-width: 100%;
  }

  .divider {
    max-width: 100%;
    margin-right: 10px;
    margin-top: 40px;
  }

  .section-subtitle {
    max-width: 100%;
    margin-top: 40px;
  }

  .history-details {
    max-width: 100%;
    margin-top: 40px;
  }

  .history-text {
    max-width: 100%;
    margin-top: 40px;
  }

  .history-image {
    margin-top: 40px;
  }

  .trust-section {
    margin-top: 40px;
  }

  .trust-description {
    max-width: 100%;
    margin-top: 40px;
  }

  .benefits-section {
    margin-top: 40px;
  }

  .three-column-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .three-column-layout .column {
    width: 100%;
  }

  .benefit-image {
    max-width: 100%;
    margin-top: 35px;
  }

  .values-section {
    margin-top: 40px;
  }

  .values-section .section-header {
    flex-direction: row;
  }

  .values-section .section-title {
    font-size: 40px;
  }

  .value-item {
    margin-top: 40px;
  }

  .value-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .value-description {
    max-width: 100%;
  }

  .testimonials-section {
    margin-top: 40px;
  }

  .testimonial-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .divider-large {
    margin-top: 40px;
  }

  .team-expertise-section {
    margin-top: 40px;
  }

  .team-details {
    max-width: 100%;
    margin-top: 40px;
  }

  .team-content {
    max-width: 100%;
    margin-top: 40px;
  }

  .team-expertise-text {
    max-width: 100%;
    margin-right: 10px;
    margin-top: 40px;
  }

  .team-expertise-image {
    max-width: 100%;
    margin-top: 40px;
  }

  .cta-section {
    margin-top: 40px;
  }

  .cta-section .background-image {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-title {
    max-width: 100%;
  }

  .cta-subtitle {
    max-width: 100%;
    margin-right: 10px;
    margin-top: 40px;
  }

  .cta-description {
    max-width: 100%;
    margin-top: 40px;
  }

  .cta-button {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
  }

  @media (max-width: 640px) {
    .footer-content {
      padding: 42px 20px;
    }
  } 


}
