@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: #ffffff;
}

.logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 30%;
}

.nav-links li {
  list-style: none;
  padding:0 20px;
}

.nav-links a {
  color: #1f4769;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #888f64;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #1f4769;
  margin: 5px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .nav-links {
    position: fixed;
    right: 0px;
    height: 100vh;
    top: 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    z-index: 1000;
  }
  
  .nav-links li {
    opacity: 0;
    margin: 20px 0;
  }
  
  .burger {
    display: block;
    z-index: 2000;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero */

.hero {
  height: 60vh;
  position: relative;
  overflow: hidden;
  background-color: #f0f8ff;
}

.hero2 {
  height: 50vh;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 50%;
}

.hero-title {
  font-size: 4rem;
  color: #1f4769;
  margin-bottom: 0.5rem;
}

.hero2 .hero-title {
  font-size: 5rem;
  color: #888f64;
}

.hero-subtitle {
  font-size: 2rem;
  color: #888f64;
  margin-bottom: 1.5rem;
  width: 60%;
}

.hero-description p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.hero2 .hero-description p {
  font-size: 1.4rem;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #1f4769;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #888f64;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
}

.hero-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 120%;
  height: 140%;
  background-color: #e6f2ff;
  transform: rotate(-15deg);
}

.hero-image {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 80%;
  height: 80%;
  background-image: url('./images/bg.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1200px) {
  .hero-content {
      max-width: 60%;
  }
  
  .hero-title {
      font-size: 3.5rem;
  }
  
  .hero2 .hero-title {
      font-size: 4rem;
  }
  
  .hero-subtitle {
      font-size: 1.8rem;
      width: 70%;
  }
}

@media screen and (max-width: 1070px) {
  .hero-image {
      opacity: 0.3;
  }

  .hero-background img {
      opacity: 0.3;
  }

  .hero2 .hero-title {
      font-size: 3rem;
  }

  .hero2 .hero-content {
      max-width: 100%;
  }
  
  .hero-content {
      max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .hero, .hero2 {
      height: auto;
  }
  
  .hero-content {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      max-width: 90%;
      margin: 2rem auto;
      text-align: center;
  }
  
  .hero-title, .hero2 .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.5rem;
      width: 100%;
  }
  
  .hero-description p, .hero2 .hero-description p {
      font-size: 1rem;
  }
  
  .hero-background {
      width: 100%;
  }
  
  .hero-shape {
      display: none;
  }
  
  .hero-image {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      opacity: 0.2;
      transform: none;
  }
}

@media screen and (max-width: 480px) {
  .hero-title, .hero2 .hero-title {
      font-size: 2rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .cta-button {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
  }
}

  /* Tarifs */

  .tarifs-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
  }
  
  .tarifs-section h2 {
    font-size: 2.5rem;
    color: #888f64;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .tarifs-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .tarifs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
  }
  
  .tarifs-table th, .tarifs-table td {
    padding: 15px;
    text-align: left;
  }
  
  .tarifs-table th {
    background-color: #1f4769;
    color: #ffffff;
    font-size: 1.2rem;
  }
  
  .tarifs-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  .tarifs-table td:last-child {
    font-weight: bold;
    color: #1f4769;
  }
  
  .aide-financement {
    margin: 40px 0;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.1);
  }
  
  .aide-financement h3 {
    font-size: 1.8rem;
    color: #888f64;
    margin-bottom: 20px;
  }
  
  .aide-financement p {
    margin-bottom: 15px;
  }
  
  .aide-financement ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .aide-financement li {
    background-color: #e6f2ff;
    color: #1f4769;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
  }
  
  

  /* Présentation */

  .services-section {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
  }
  
  .services-content h2 {
    font-size: 2.5rem;
    color: #888f64;
    margin-bottom: 10px;
  }
  
  .services-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
  }
  
  .services-grid {
    display: grid;
    gap: 20px;
  }
  
  @media screen and (min-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media screen and (min-width: 768px) and (max-width: 1199px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (max-width: 767px) {
    .services-grid {
      grid-template-columns: 1fr;
    }

    .services-content h2 {
      font-size:1.5rem;
    }

    .services-content p {
      font-size:1rem;
    }
  }
  
  .service-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #1f4769;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 255, 0.2);
  }
  
  .service-item:hover::before {
    transform: scaleX(1);
  }
  
  .service-item h4 {
    color: #888f64;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .service-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #1f4769;
  }
  
  .service-item p {
    color: #333;
    line-height: 1.6;
  }
  
  .service-item:hover h4 {
    color: #1f4769;
  }
  
  .service-item:hover h4::after {
    width: 70px;
    background-color: #1f4769;
  }
  
  .service-icon {
    font-size: 30px;
    margin: 20px 0;
  }

  /* Qui je suis ? */

  .about-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    color: #888f64;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
  }
  
  @media screen and (min-width: 768px) {
    .about-grid {
      grid-template-columns: 1fr 2fr;
    }
  }
  
  .about-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.1);
    margin: 0 auto;
    display: block;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-text ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .about-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .about-text ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: #888f64;
  }
  

  /* Parcours */

  .parcours-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
  }
  
  .parcours-section h2 {
    font-size: 2.5rem;
    color: #888f64;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #1f4769;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
  }
  
  .timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 50%;
  }
  
  .timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #ffffff;
    border: 4px solid #888f64;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  .timeline-item:nth-child(even)::after {
    left: -10px;
  }

  @media screen and (max-width:800px) {
    .timeline-item:nth-child(even)::after {
      left: 16px;
    }
  }
  
  .timeline-date {
    font-weight: bold;
    color: #1f4769;
    margin-bottom: 10px;
  }
  
  .timeline-content {
    padding: 20px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .timeline-content h3 {
    color: #888f64;
    margin-bottom: 10px;
  }
  
  .timeline-content ul {
    padding-left: 20px;
  }
  
  @media screen and (max-width: 600px) {
    .timeline::after {
      left: 31px;
    }
    
    .timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
    
    .timeline-item::after {
      left: 21px;
    }
    
    .timeline-item:nth-child(even) {
      left: 0%;
    }
  }
  

  /* Diplomes et Formations */

  .qualifications-section {
    padding: 60px 5%;
    background-color: #ffffff;
  }
  
  .qualifications-section h2 {
    text-align: center;
    color: #1f4769;
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .qualifications-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  
  .qualifications-column {
    flex: 1;
  }

  
  .qualifications-column h3 {
    color: #888f64;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .qualifications-list {
    list-style-type: none;
    padding: 0;
  }
  
  .qualifications-list li {
    background-color: #f0f8ff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .qualifications-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .qualification-year {
    font-weight: bold;
    color: #1f4769;
    display: block;
    margin-bottom: 5px;
  }
  
  .qualification-name {
    color: #333;
  }

  .qualifications-subtitle {
    color: #888f64; /* Couleur orange */
    font-size: 1.2rem; /* Taille du sous-titre */
    margin-bottom: 15px; /* Espacement en dessous du sous-titre */
    text-align: center; /* Centrer le sous-titre */
  }

  .qualifications-main-subtitle {
    text-align: center;
    color: #888f64; /* Couleur orange */
    font-size: 1.4rem; /* Taille légèrement plus petite que le titre principal */
    margin-bottom: 30px; /* Espacement */
    font-weight: 400; /* Grasse légère */
}
  
  @media screen and (max-width: 768px) {
    .qualifications-container {
      flex-direction: column;
    }
  }

  /* Mon Approche */

  .approach-section {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

.approach-section h2 {
    color: #1f4769;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.approach-subtitle {
    color: #888f64;
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
    gap: 30px; /* Espacement entre les boxes */
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur les petits écrans */
    }
}

@media (max-width: 480px) {
    .approach-grid {
        grid-template-columns: 1fr; /* 1 colonne sur les très petits écrans */
    }
}

.approach-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 255, 0.1);
}

.approach-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #888f64;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.approach-icon-wrapper i {
    color: white;
    font-size: 3rem;
}

.approach-item h4 {
    color: #1f4769;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.approach-item p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.approach-hover-effect {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 5px;
    transition: bottom 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 255, 0.15);
}

.approach-item:hover .approach-icon-wrapper {
    transform: rotate(360deg);
}

.approach-item:hover .approach-hover-effect {
    bottom: 0;
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Contact */

.cta-section {
    background-color: #1f4769; /* Fond bleu */
    color: white; /* Texte blanc */
    padding: 40px 5%;
    text-align: center; /* Centrer le texte */
    border-radius: 10px; /* Coins arrondis */
    margin: 20px 0; /* Espacement au-dessus et en dessous */
    width:70%;
    margin:80px auto 110px auto;
}

.cta-content h2 {
    font-size: 2rem; /* Taille du titre */
    margin-bottom: 10px; /* Espacement sous le titre */
}

.cta-content p {
    font-size: 1.2rem; /* Taille du texte descriptif */
    margin-bottom: 20px; /* Espacement sous le texte */
}

.cta-content .cta-button {
    background-color: #888f64; /* Couleur orange pour le bouton */
    color: white; /* Texte blanc */
    padding: 15px 30px; /* Espacement interne du bouton */
    border-radius: 5px; /* Coins arrondis */
    text-decoration: none; /* Pas de soulignement */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-content .cta-button:hover {
    background-color: #888f64; /* Couleur orange foncé au survol */
}

@media screen and (max-width:768px) {
  .cta-section {
    width:90%;
  }
}

/* Footer */

.footer {
  background-color: #f0f8ff;
  padding: 20px 5%;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
}

.footer-nav ul {
  list-style-type: none;
  padding: 0;
}

.footer-nav ul li {
  display: inline;
  margin-left: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #1f4769;
  font-weight: bold;
}

.footer-nav a:hover {
  color: #888f64;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav ul li {
    margin: 0 10px;
  }
}

@media screen and (max-width: 800px) {
  .footer-contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav ul li {
    margin: 5px 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer-logo img {
    height: 40px;
  }

  .footer-nav ul li {
    display: block;
    margin: 0px 20px;
  }
}


.contact-item {
  display: flex;
  align-items: center;
}

.contact-container .contact-item i {
  margin-right: 10px;
  color: #FFF;
}

footer .contact-item i {
  color:#888f64;
}

.contact-item a {
  color: #1f4769;
  text-decoration: none;
}

.contact-item a:hover {
  color: #888f64;
}

.footer-bottom {
  margin-top: 20px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: #888f64;
}


/* Prestations */

.prestations-section {
    padding: 60px 5%;
    background-color: #FFF;
}

.prestations-section h2 {
    text-align: center;
    color: #888f64;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

@media screen and (max-width:768px) {
  .prestations-section h2 {
    font-size:1.5rem;
  }

  .prestation-section p {
    font-size:1rem;
  }
}

.prestations-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #333;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.prestation-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.prestation-item:hover {
    transform: translateY(-5px);
}

.prestation-item i {
    font-size: 3rem;
    color: #888f64;
    margin-bottom: 20px;
}

.prestation-item h3 {
    color: #888f64;
    margin-bottom: 15px;
}

.prestation-item ul {
    list-style-type: none;
    padding: 0;
}

.prestation-item li {
    margin-bottom: 10px;
}

.experience-block, .tarifs-section, .process-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.1);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.experience-block::before, .tarifs-section::before, .process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1f4769, #888f64);
}

.experience-block:hover, .tarifs-section:hover, .process-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 255, 0.15);
}

.experience-block h3, .tarifs-section h3, .process-section h3 {
    color: #888f64;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.experience-block h3::after, .tarifs-section h3::after, .process-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #888f64;
}

.experience-block p, .tarifs-section p, .process-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tarifs-section ul {
    list-style-type: none;
    padding-left: 0;
}

.tarifs-section li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tarifs-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #888f64;
    font-weight: bold;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

.process-step {
  text-align: center;
  flex-basis: calc(25% - 20px);
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f0f8ff;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 255, 0.1);
}

@media screen and (max-width: 1200px) {
  .process-step {
      flex-basis: calc(33.33% - 20px);
  }
}

@media screen and (max-width: 900px) {
  .process-step {
      flex-basis: calc(50% - 20px);
  }
}

@media screen and (max-width: 600px) {
  .process-step {
      flex-basis: 100%;
  }
}

.process-step i {
    font-size: 2.5rem;
    color: #888f64;
    margin-bottom: 15px;
}

.process-step h4 {
    color: #888f64;
    margin-bottom: 10px;
}

.additional-info {
    font-style: italic;
    color: #666;
    margin-top: 25px;
    padding: 15px;
    background-color: #f0f8ff;
    border-radius: 10px;
}

/* Contact */

.contact-section {
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 255, 0.1);
}

.contact-info, .contact-form-container {
    flex: 1;
    padding: 60px;
}

.contact-info {
    background: linear-gradient(135deg, #1f4769 0%, #4d4dff 100%);
    color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    margin-right: 20px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.social-media {
    display: flex;
    justify-content: flex-start;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #888f64;
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: #ffffff;
}

.contact-form h3 {
    font-size: 2rem;
    color: #1f4769;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    transition: border-color 0.3s;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: #1f4769;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #1f4769;
}

.submit-btn {
    background-color: #1f4769;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

textarea {
    resize:vertical;
}

.submit-btn:hover {
    background-color: #888f64;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        width:90%;
        margin:auto;
    }
    
    .contact-info, .contact-form-container {
        padding: 40px;
    }

    .contact-info h2 {
        font-size:1.8rem;
    }
}

/* Mentions Légales */

.mentions-legales {
  background-color: #f0f8ff;
  padding: 60px 0;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.mentions-legales h1 {
  font-size: 2.5rem;
  color: #888f64;
  text-align: center;
  margin-bottom: 40px;
}

.mentions-legales h2 {
  font-size: 1.8rem;
  color: #1f4769;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #888f64;
  padding-bottom: 10px;
}

.mentions-legales h3 {
  font-size: 1.4rem;
  color: #1f4769;
  margin-top: 30px;
  margin-bottom: 15px;
}

.mentions-legales p, .mentions-legales address {
  line-height: 1.6;
  margin-bottom: 15px;
}

.legal-info, .mediation, .articles {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.articles article {
  margin-bottom: 30px;
}

.articles article:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .mentions-legales {
    padding: 40px 0;
  }
  
  .mentions-legales h1 {
    font-size: 2rem;
  }
  
  .mentions-legales h2 {
    font-size: 1.5rem;
  }
  
  .mentions-legales h3 {
    font-size: 1.2rem;
  }
}
