/* ================= GENERAL ================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Lora', serif;
  line-height: 1.6;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  color: #222;
}

/* ================= PAGE TITLE ================= */
.page-title {
  text-align: center;
  font-size: 32px;
  color: #114d5f;
  margin-bottom: 40px;
  font-weight: 700;
  border-bottom: 3px solid var(--accent, #0e819b); /* use accent var */
  display: inline-block;
  padding-bottom: 6px;
}

/* ================= REVIEWS ================= */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.review {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.review .stars {
  width: 120px;
  height: auto;
}

.review strong {
  color: #8b0000;
  font-size: 16px;
}

.review p {
  margin: 8px 0 0;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

/* ================= GOOGLE LINK ================= */
.google-link {
  text-align: center;
  margin: 40px 0 30px;
}

.google-link a {
  font-weight: 700;
  font-size: 18px;
  color: #004c6d;
  text-decoration: none;
  transition: color .2s ease;
}
.google-link a:hover {
  text-decoration: underline;
  color: var(--accent, #0e819b);
}

/* ================= BRAND LOGOS ================= */
.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
  margin: 40px auto 60px;
  max-width: 1200px;
}

.brands img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: transform .2s ease;
}
.brands img:hover {
  transform: scale(1.05);
}

/* Tablet */
@media(max-width: 1024px){
  .brands { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media(max-width: 600px){
  .brands { grid-template-columns: 1fr; }
}

/* ================= DISCLAIMER & QUICK LINKS ================= */
.disclaimer-wrap {
  background: #f5f5f5;
  padding: 50px 40px;
  border-top: 2px solid #e2e2e2;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  border-radius: 8px; /* new for consistency */
}

.disclaimer {
  flex: 2;
}

.disclaimer h3 {
  font-size: 18px;
  font-weight: 700;
  color: #114d5f;
  margin-bottom: 15px;
}

.disclaimer ul {
  list-style: square;
  padding-left: 20px;
  margin: 0;
  line-height: 1.7;
  color: #333;
}

.disclaimer li {
  margin-bottom: 12px;
}

.quick-links {
  flex: 1;
}

.quick-links h3 {
  font-size: 18px;
  font-weight: 700;
  color: #114d5f;
  margin-bottom: 15px;
}

.quick-links ul {
  list-style: square;
  padding-left: 20px;
  margin: 0;
}

.quick-links a {
  text-decoration: none;
  color: #0e2cb8;
  font-weight: 500;
  transition: color .2s ease;
}
.quick-links a:hover {
  text-decoration: underline;
  color: var(--accent, #0e819b);
}

/* Responsive */
@media(max-width: 900px) {
  .disclaimer-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
