:root {
      --primary-gradient: linear-gradient(90deg, #6a11cb, #2575fc);
      --card-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      --transition-speed: 0.5s;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      line-height: 1.6;
    }

    .reviews-section {
      padding: 5rem 1.25rem;
      background-color: #f9f9f9;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-label {
      display: block;
      font-weight: 600;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
    }

    .section-title {
      font-size: 2.25rem;
      line-height: 1.2;
      margin: 0 0 1rem;
      color: #222;
    }

    .gradient-text {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .section-description {
      font-size: 1.125rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Carousel Styles */
    .carousel-container {
      position: relative;
      overflow: hidden;
      margin: 0 auto;
    }

    .carousel-track {
      display: flex;
      transition: transform var(--transition-speed) ease-in-out;
    }

    .carousel-slide {
      flex: 0 0 calc(100% / 3); /* 3 cards in view */
      padding: 0 0.5rem;
    }

    .review-card {
      background-color: #fff;
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: var(--card-shadow);
      text-align: center;
    }

    .review-text {
      font-size: 1.125rem;
      color: #333;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-style: italic;
      position: relative;
      padding: 0 1.5rem;
    }

    .review-text::before,
    .review-text::after {
      content: '"';
      font-size: 2rem;
      color: rgba(106, 17, 203, 0.2);
      position: absolute;
    }

    .review-text::before { left: 0; top: -0.5rem; }
    .review-text::after { right: 0; bottom: -1.5rem; }

    .review-author {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 1.5rem;
    }

    .review-author img {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 3px solid #f0f0f0;
    }

    .author-info h4 { margin: 0; font-size: 1.25rem; font-weight: 600; color: #222; }
    .author-info p { margin: 0.25rem 0 0; font-size: 0.9375rem; color: #777; }

    /* Navigation Controls */
    .carousel-nav {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
      gap: 1rem;
    }

    .carousel-button {
      background: var(--primary-gradient);
      color: white;
      border: none;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, opacity 0.2s ease;
      opacity: 0.9;
    }

    .carousel-button:hover { transform: scale(1.05); opacity: 1; }
    .carousel-button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    /* Pagination Dots */
    .carousel-pagination {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
      gap: 0.75rem;
    }

    .pagination-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background-color: rgba(37, 117, 252, 0.3);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
    }

    .pagination-dot.active { background-color: #2575fc; transform: scale(1.2); }
