/* Styles spécifiques à la page calo.html */

/* Section d'introduction */
.about_section {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
  }
  .about_section .intro-text {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: auto;
  }
  
  /* Services */
  .service_section {
    padding: 60px 0;
    background-color: #fff;
  }
  .service_section .service-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  .service_section .service-box:hover {
    transform: scale(1.05);
  }
  .service_section .img-box img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  .service_section h5 {
    font-size: 20px;
    font-weight: bold;
    color: #0355cc;
    margin-bottom: 10px;
  }
  .service_section p {
    font-size: 16px;
    color: #555;
  }
  
  /* Carrousel */
  .carousel_section {
    padding: 50px 0;
    background-color: #eee;
  }
  .carousel-inner img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }
  .carousel-control-prev, .carousel-control-next {
    filter: invert(100%);
  }
  
  /* Footer */
  .footer_section {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  