@charset "utf-8";
/* CSS Document */

/* ================================
   Reviews Section Styling
   ================================ */

:root {
    --primary-color: #0070ba;   /* Blue */
    --2-primary-color: #197ec0; /* Blue #0070ba but one shade lighter */
    --3-primary-color: #0064a7; /* Blue #0070ba but one shade darker */
    --secondary-color: #ffc439; /* Orange */
    --text-color: #333;
    --background-color: #fff;   /* White */
    --background-color-02: #f8f8f8; /* White Smoke */
	--background-color-03: #fffceb;  /* Ivory */
    --body-color: #67a3e1;      /* Cornflower Blue */ 
    --yellow-color: #fefe00;    /* Yellow */
}

.highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.25rem 1.5rem 0.5rem 1.5rem;
  background-color: var(--background-color-03);
  /*background: #a8ffa8;*/
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
} 

.highlight .top_page  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 0 1rem;
  }
  
.highlight .top_page img  {
	height: 6.5rem;
	padding
}  

.highlight h1 {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
	}  
	
.review-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.review-section .top_page  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 0 1rem;
  }
  
.review-section .top_page img  {
	height: 6.5rem;
}

.review-section .submit-review p {
	text-align: left;
	}
.submit-review .center p,
.submit-review .center a {
	text-align: center;
	} 
.submit-review .center a {
	text-decoration: none;
	color: #197ec0;
	}
.submit-review .center a:hover {
	text-decoration: none;
	color: #0064a7;
	}

.review-section h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
}

.review-item {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.review-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.review-item h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.review-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.review-item .head {
    font-size: 110%;
    font-style: italic;
}

.review-item .verified {
    font-size: 85%;
    font-variant: small-caps;
    color: #ca5500;
}

/* Responsive FAQ Layout */
@media (max-width: 710px) {
  .review-section {
    padding: 1rem;
  }

  .review-section h1 {
    font-size: 1.5rem;
  }

  .review-item h2 {
    font-size: 1.1rem;
  }

  .review-item p {
    font-size: 0.95rem;
  }
  
  .highlight .top_page  { 
  gap: 1rem; 
  }
  
  .highlight .top_page img:first-child {
	padding: 0 0 0 0.313rem;
  }
  
  .highlight .top_page img:nth-child(3) {
	padding: 0 0.313rem 0 0;
  }  
}

@media (max-width: 445px) {
  .highlight .top_page  { 
  gap: 0.5rem; 
  }
  .highlight .top_page img  {
	height: 4.25rem;
  }
  .highlight h1 {
    font-size: 1.1rem;
  }
} 