body {
  background-color: #000;
  background-image: url(../img/pattern-lines-night.svg)
}
.services-page {
  color: #fff;
  color: #000;
  padding: 160px 10%;
  min-height: 100vh;
}

.services-heading {
  font-size: clamp(60px, 7vw, 120px);
  font-weight: 100;
  letter-spacing: -2px;
  text-align: center;
   margin: 100px auto;
  color: white;
}

.accordion {
  max-width: 950px;
  margin: 0 auto;
  border-top: 1px solid #fff;
}

.accordion-item {
  border-bottom: 1px solid #fff;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 28px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  color:#fff;
}
.accordion-header span { text-align: left;}
.accordion-header:hover {
  color: #ccc;
}

.accordion-icon {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  font-weight: 200;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  padding-right: 2px; 
}

.accordion-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
  color: #efefef;
}
.accordion-body p:last-of-type {
  font-size: 1rem;
  font-weight: 100;
  color: #eee;
  /*! border: 0.5px solid; */
  background-color: black;
  padding: 1em;
}

.accordion-body .btn {
  display: inline-block;
  margin-top: 1.2rem;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  padding: 12px 28px;
}

.accordion-body .btn:hover {
  background: #fff;
  color: #fff;
}

@media (max-width: 700px) {
  .services-heading {
    font-size: 3rem;
  }
  .accordion-header {
    font-size: 1.1rem;
  }
}


#bandeau {
  height: 400px;
  background-image: url(../img/bandeau-services.png);
  background-repeat:no-repeat;
  background-size:cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-attachment: fixed;
}




