
body {
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;*/
  /*background-color: #f9f9f9;*/
  /*color: #333;*/
  /*line-height: 1.4;*/
}

.trustpilot-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
}

/* Header Section */
.trustpilot-header {
  text-align: center;
  margin-bottom: 30px;
}

.rating-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.excellent-text {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.stars-container {
  display: flex;
  gap: 2px;
}

.star {
  color: #00b67a;
  font-size: 28px;
  line-height: 1;
  display: block;
  width: 25px;
}

.rating-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: #666;
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 16px;
}

.trustpilot-text {
  font-weight: 600;
  color: #333;
}

/* Subheader */
.subheader {
  text-align: center;
  margin-bottom: 30px;
}

.subheader p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Review Cards */
.review-card {
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}

.review-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.star-small {
  color: #00b67a;
  font-size: 16px;
  line-height: 1;
  display: block;
  width: 15px;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.checkmark {
  background-color: #999;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.verified-text {
  color: #666;
  font-size: 14px;
}

.review-meta {
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.customer-name {
  font-weight: 500;
  color: #333;
}

.review-time {
  color: #999;
}

.review-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
}

.review-content {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .trustpilot-container {
    padding: 20px 15px;
  }

  .rating-section {
    flex-direction: column;
    gap: 10px;
  }

  .excellent-text {
    font-size: 28px;
  }

  .star {
    font-size: 24px;
  }

  .rating-info {
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .review-card {
    padding: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Fine-tune for large screens */
@media (min-width: 1200px) {
  .trustpilot-container {
    padding: 50px 40px;
  }
}
