.services-section {
  height: 50vh;
  background-image: url('img/laptop.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 50px;
}

.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.services-section .text-center {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.services-section h1 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.services-section p {
  font-size: 1.5rem;
  font-weight: 300;
  width: 800px;
}

.image-section {
  padding-top: 50px;
}

.container {
  margin-top: 30px;
  margin-bottom: 30px;
}

.card-col {
  margin-bottom: 30px;
}

.card-title {
  margin-top: 30px;
  margin-bottom: 20px;
}

.list_advantage{
  background-color: var(--red);
  color: white;
}

.list_advantage:hover{
  background-color: var(--tiffany);
  color: white;
}

.accordion {
  --bs-accordion-active-color: var(--black);

  --bs-accordion-active-bg: var(--white);

  --bs-accordion-btn-focus-box-shadow: 0 0 10px var(--red);

}

.card-img-bottom {
  margin-top: 46.5px;
}

@media (max-width: 768px) {
  .services-section p {
    font-size: 1rem;
    width: 300px;
  }

  .services-section h1 {
    font-size: 3rem;
    width: 300px;
  }

}