  .manual-reviews-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-background);
    z-index: 1;
  }

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

  .google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .reviews-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
  }

  .rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
  }

  .stars {
    display: flex;
    gap: 4px;
    color: #FCA311; /* Gold color */
  }

  .review-count-link {
    color: #4b5563;
    text-decoration: underline;
    font-size: 0.9rem;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem auto;
  }

  .review-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
  }

  .review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
  }

  .author-info {
    flex: 1;
  }

  .author-name {
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
  }

  .review-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .stars-mini {
    display: flex;
    color: #FCA311;
  }

  .review-date {
    font-size: 0.75rem;
    color: #6b7280;
  }

  .review-text {
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    position: relative;
  }

  .quote-icon-start {
    color: #d1d5db;
    margin-right: 0.5rem;
    vertical-align: top;
  }

  .reviews-cta {
    text-align: center;
  }

  .btn-google {
    display: inline-block;
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-google:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
  }

  @media (max-width: 768px) {
    .reviews-header h2 {
      font-size: 2rem;
    }
  }
