/* ----------------------------------------
   Base / Police / Couleurs
---------------------------------------- */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #3a3a3a;
  color: #f7f7f7;
  line-height: 1.6;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

/* ----------------------------------------
   Sections principales
---------------------------------------- */
.intro-services h1 {
  color: #c19c00;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.intro-services h2 {
  color: #c19c00;
  font-size: 1.8rem;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 700;
}

.intro-services p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #f7f7f7;
}

.intro-services a {
  color: #c19c00;
  text-decoration: none;
}

.intro-services a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   Hébergeur OVH
---------------------------------------- */
#hebergeur {
  background-color: #424242;
  padding: 20px 25px;
  border-left: 6px solid #c19c00;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

#hebergeur p {
  margin: 8px 0;
  font-size: 1rem;
}

#hebergeur a {
  color: #c19c00;
  text-decoration: none;
}

#hebergeur a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .intro-services h1 {
    font-size: 2rem;
  }

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

  .intro-services p,
  #hebergeur p {
    font-size: 0.95rem;
  }

  #hebergeur {
    padding: 15px 15px;
  }
}

@media (max-width: 480px) {
  .intro-services h1 {
    font-size: 1.8rem;
  }

  .intro-services h2 {
    font-size: 1.3rem;
  }

  .intro-services p,
  #hebergeur p {
    font-size: 0.9rem;
  }

  .container {
    padding: 10px;
  }
}