html {
  scroll-behavior: smooth;
}
body {
    font-family: 'proxima nova', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f5f3;
    color: #222;
  }

  .faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem;
    justify-content: center;
  }

  .faq-list {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
  }

  .faq-item {
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
    cursor: pointer;
  }

  .faq-item h3 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #555;
  }

  .faq-item.active .answer {
    max-height: 200px;
    opacity: 1;
  }

  .faq-item.active h3::after {
    content: '-';
  }

  .faq-item h3::after {
    content: '+';
    font-size: 1.2rem;
  }

  .image-box {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
  }

  .image-box img {
    width: 75%;
    height: auto;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    right: 0;
  }

  .image-box img.fade-out {
    opacity: 0;
  }

  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column;
      padding: 1.5rem;
    }

    .image-box {
      height: auto;
    }

    .image-box img {
      position: relative;
      width: 100%;
    }
  }
  .card-img:hover img {
    transform: scale(1.1);
  }
  .card-img:hover .name {
    color: #dc2626;
  }
  .slider-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .slider-item {
    scroll-snap-align: center;
    transition: transform 0.3s, scale 0.3s;
  }

  .slider-item.active {
    transform: scale(1.2);
    z-index: 10;
  }
  .reveal-circle {
    clip-path: circle(0% at center);
    transition: clip-path 1s ease-in-out;
  }

  .reveal-circle.show {
    clip-path: circle(150% at center);
  }
  @keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  @keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .animate-bounce-slow {
    animation: bounce-slow 2s infinite;
  }

  .animate-spin-slow {
    animation: spin-slow 6s linear infinite;
  }