
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    /*body {
      font-family: 'Poppins', sans-serif;;
      background: #f7f5f2;
      padding: 60px 20px;
    }*/

    /* ── Section Wrapper ── */
    .reviews-section {

max-width: 1100px;
      margin: 17px auto;
    }

    /* ── Heading Block ── */
    .heading-block {
      text-align: center;
      margin-bottom: 48px;
    }

    .heading-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 14px;
    }

    .heading-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(32px, 5vw, 37px);
      font-weight: 600;
      color: #111;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .heading-title em {
      font-style: italic;
      color: #2a7a3f;
    }

    .heading-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .heading-line::before,
    .heading-line::after {
      content: '';
      width: 48px;
      height: 1px;
      background: #ccc;
    }

    .heading-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #2a7a3f;
    }

    /* ── Google Header ── */
    .google-header {
      background: #fff;
      border: 0.5px solid #e0e0e0;
      border-radius: 14px;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 14px;
    }

    .google-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .google-score {
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      font-weight: 500;
      color: #111;
      line-height: 1;
    }

    .google-meta {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .google-logo-text {
      font-size: 15px;
      font-weight: 500;
    }

    .g-b { color: #4285F4; }
    .g-r { color: #EA4335; }
    .g-y { color: #FBBC05; }
    .g-g { color: #34A853; }

    .stars-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .stars {
      color: #f59e0b;
      font-size: 16px;
      letter-spacing: 1px;
    }

    .review-count {
      font-size: 13px;
      color: #888;
    }

    .review-btn {
      background: #111;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 11px 22px;
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }

    .review-btn:hover {
      background: #2a7a3f;
      transform: translateY(-1px);
    }

    .review-btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    /* ── Cards Grid ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .review-card {
      background: #fff;
      border: 0.5px solid #462626;
      border-radius: 14px;
      padding: 18px 18px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: border-color 0.2s, transform 0.2s;
    }

    .review-card:hover {
      border-color: #bbb;
      transform: translateY(-2px);
    }

    .reviewer-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      font-size: 15px;
      color: #fff;
      flex-shrink: 0;
    }

    .reviewer-name {
      font-size: 13px;
      font-weight: 500;
      color: #111;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .verified { color: #34A853; font-size: 12px; }

    .time-ago {
      font-size: 11px;
      color: #aaa;
      margin-top: 2px;
    }

    .card-stars {
      color: #f59e0b;
      font-size: 14px;
      letter-spacing: 0.5px;
    }

    .review-text {
      font-size: 13px;
      color: #555;
      line-height: 1.6;
      flex: 1;
    }

    .read-more {
      font-size: 12px;
      color: #999;
      font-weight: 500;
      cursor: pointer;
    }

    .card-footer {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 10px;
      border-top: 0.5px solid #f0f0f0;
      margin-top: 2px;
    }

    .g-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .posted-label {
      font-size: 11px;
      color: #aaa;
      line-height: 1.3;
    }

    .posted-google {
      font-size: 12px;
      color: #4285F4;
      font-weight: 500;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .cards-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 520px) {
      .cards-grid { grid-template-columns: 1fr; }
      .google-header { flex-direction: column; align-items: flex-start; }
      .review-btn { width: 100%; justify-content: center; }
    }
 
  
  
  