.inspiration-swiper-section .container-fluid,
.inspiration-swiper-section .container {
  max-width: 1600px;
  margin: 0 auto;
}

.inspiration-swiper {
  width: 100%;
}

.inspiration-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inspiration-img {
  width: 100%;
  max-width: 420px;
  height: 350px;
  object-fit: cover;
  margin-bottom: 30px;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto !important;
}

.testimonials-section {
    padding: 60px 0 30px 0;
    background: #fff;
  }
  .testimonials-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
  }
  .testimonial-col {
    flex: 1;
    text-align: center;
    padding: 40px 30px 30px 30px;
    position: relative;
  }
  .testimonial-col:not(:last-child) {
    border-right: 1px solid #ddd;
  }
  .testimonial-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 30px;
    border: 2px solid #eee;
  }
  .testimonial-quote {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #444;
    margin-bottom: 20px;
    margin-top: 0;
    letter-spacing: 1px;
  }
  .testimonial-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
  }
  .feefo-summary {
    margin-top: 40px;
  }
  .feefo-title {
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .feefo-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .feefo-score {
    font-size: 1rem;
    color: #444;
    margin-left: 10px;
  }
  .feefo-logo {
    margin-top: 10px;
  }

#container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 20px;
    z-index: 221001;
  }

  .popup::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: var(--main-color);
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.8;
  }
  .popup.active {
    transform: translateX(0);
  }

  .popup h3 {
    margin-top: 0;
    color: var(--white-color);
    font-size: 24px;
    text-transform: uppercase;
  }

  .popup ul {
    padding-left: 20px;
  }

  #close-btn {
    position: absolute;
    top: 50px;
    right: 20px;
    font-size: 18px;
    background: #eee;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 20;
  }
  svg path{
    fill: var(--second-color) !important;
    cursor: pointer;
    opacity: 0.8;
  }
  svg path:hover{
    fill: var(--main-color) !important;
  }