.tarifs-section {
  background-color: #eeeeee;
  padding: 40px 20px;
  font-family: 'Open Sans', sans-serif;
}

.tarifs-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}

.tarifs-images {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.tarifs-block {
  text-align: center;
}

.tarifs-block img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: #eeeeee;
  display: block;
  margin: 0 auto;
}

.tarifs-caption {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 4px 10px;
  font-weight: 600;
  position: relative;
  margin-top: -40px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tarifs-text {
  width: 65%;
  max-width: 600px;
}

.tarifs-title {
  font-family: 'Great Vibes', cursive;
  font-size: 64px !important;
  color: #ff9900;
  margin-bottom: 20px;
  text-shadow:
    2px 2px 4px #000000,
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000;
}

.tarifs-text p,
.tarifs-text ul {
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .tarifs-container {
    flex-direction: column;
    align-items: center;
  }

  .tarifs-images,
  .tarifs-text {
    width: 100%;
  }

  .tarifs-title {
    text-align: center;
  }
}
