@charset "utf-8";
/* CSS Document */

/* ================================
   Reviews Section Styling
   ================================ */
.highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.25rem 1.5rem 0.5rem 1.5rem;
  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; 
}  

.highlight .top_page img:first-child {
	margin: 0;
	padding: 0;
	}

.highlight h1 {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
	}  
	
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-section .top_page  {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 0 1rem;
  }
  
.contact-section .top_page img  {
	height: 6.5rem;
}  
 
.contact-section h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
}

.contact-section h2 {
  font-size: 1.4rem; 
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
}

.contact-section .text-block-1 p {
	text-align: left;
	margin-bottom: 2rem;
	}
	
.contact-section .text-block-2 { 
    margin-top: 1rem; 
	}

/* Responsive FAQ Layout */
@media (max-width: 710px) {
  .contact-section {
    padding: 1rem;
  }

  .contact-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;
  }
} 