@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 */
}

/* Minor form-specific overrides to match review styles */
.contact-section form label {
	font-weight: bold;
}

.contact-section form input[type="text"],
.contact-section form input[type="email"],
.contact-section form textarea {
	width: 100%;
	padding: 0.75rem;
	margin: 0.5rem 0 1rem 0;
	border: 1px solid #dcdcdc;
	border-radius: 8px;
	font-size: 1rem;
	background: #fff;
	box-shadow: none;
}

.contact-section form input[type="submit"],
.contact-section form button {
	background: var(--primary-color);
	color: #fff;
	border: none;
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
}

.contact-section form input[type="submit"]:hover,
.contact-section form button:hover {
	background: #005fa3;
}

/* Small helper to keep address blocks inside content width */
.contact-block {
	margin-top: 1rem;
}
   
.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; 
}  

.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;
  }
} 