 
 /* **** BASE COLOR **** */
 :root{
    --main-color: #068c28da;
    --second-color: var(--white-color);
    --third-color: #030303;
    --white-color: var(--white-color);
    --black-color: #068c28da;
  }
  
   /* baniere */ 
   .container-baniere-article
   {
     margin-top: 90px;
     width: 100%;
     background-image: url(../public/images/equipes/TPE.JPG);
     background-color: var(--white-color);
     height: 500px;
     background-size: cover;
   }
  
   .text-baniere
   {
     position: absolute;
     top: 27%;
     left: 3%;
   }
  
   .text-baniere h1
   {
     font-weight: bold;
     font-size: 5vh;
   }
   .text-baniere p
   {
     font-size: 3vh;
     font-style: italic;
   }

   /*contac*/
   .contact {
    padding: 130px 0;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    padding: 0;

}

.contact .heading h2 span {
    color: var(--main-color);
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: black;
    margin: 20px 0 60px;
    padding: 0;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: var(--main-color);
    color: #ffffff;
}

.contact .title h3 {
    font-size: 18px;
    font-weight: 600;
}

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: black;
    line-height: 1.6;
    margin: 0 0 40px;
}

.contact .content .info {
    margin-top: 30px;
}
.contact .content .info i {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: var(--main-color);
    margin-right: 20px;
    text-align: center;
    width: 20px;
}
.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}

/**********maps*************/
.maps-section {
  background-color: #f4f4f4;
  padding: 40px 20px;
  width: 100%;
}

.maps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map-box {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.info-box {
  background: white;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.info-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--main-color);
  font-weight: bold;
}

.info-box p {
  font-size: 14px;
  margin: 8px 0;
  color: #333;
}

.info-box a {
  color: var(--main-color);
  text-decoration: none;
  font-weight: 500;
}

.info-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (min-width: 768px) {
  .maps-container {
    flex-direction: row;
    gap: 40px;
  }

  .map-box,
  .info-box {
    flex: 1;
  }

  .info-box {
    text-align: left;
  }
}


/******************** Responsive Contact Section ********************/

@media (max-width: 767px) {
    .contact {
      padding: 60px 15px;
      text-align: center;
    }
  
    .contact .heading h2 {
      font-size: 24px;
    }
  
    .contact .heading p {
      font-size: 14px;
      margin: 15px 0 40px;
    }
  
    .contact .form-control {
      padding: 18px;
      font-size: 13px;
    }
  
    .contact button.btn {
      width: 100%;
    }
  
    .contact .title h3 {
      font-size: 16px;
    }
  
    .contact .title p {
      font-size: 13px;
    }
  
    .contact .content .info {
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
    }
  
    .contact .content .info i {
      margin: 0 0 10px 0;
      font-size: 24px;
    }
  
    .contact .content .info h4 {
      font-size: 14px;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1024px) {
    .contact {
      padding: 80px 30px;
    }
  
    .contact .heading h2 {
      font-size: 26px;
    }
  
    .contact .form-control {
      padding: 20px;
    }
  
    .contact .content .info i {
      font-size: 26px;
    }
  
    .contact button.btn {
      padding: 12px 25px;
    }
  }
  