@charset "utf-8";
/* CSS Document */

/* ================================
   FAQ 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 */
}

  
#outer_container { 
	}
   
.highlight {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.25rem 1.5rem 0.5rem 1.5rem;
  background: var(--background-color-03); /*#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
} 

.faq-section h1  {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
}

.highlight h1 {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem 0;
  text-align: center;
  font-weight: 700;
  color: var(--primary-color, #0070ba);
	}

.faq-item h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}  

/* Fix for sticky navigation covering anchor links */
.faq-item:target {
  /* This creates a space above the anchor target equal to the nav height */
  scroll-margin-top: 150px; 
}

/* ================================
   FAQ Accordion Styling
   ================================ */
.faq-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);
} 

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1rem 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary-color, #0070ba);
}

.faq-icon {
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-color, #0070ba);
}  

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 1rem;
  color: #555;
  padding: 0; /* no padding until open */
}

.faq-item.active .faq-answer {
  /* Remove fixed max-height (JS sets it dynamically) */
  padding: 0.5rem 0 1rem; 
}

div.faq-item .faq-question:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 112, 186, 0.1); /* 0.4 = 40% opacity */
  border-radius: 4px;
  padding: 0.75rem 0 0.75rem 0.313rem;
  color: #0070ba;
} 
 
footer {
	padding-bottom: 625px;
	}

/* Responsive FAQ */
@media (max-width: 710px) { 
  .faq-section {
    padding: 1rem;
  }

  .faq-section h1 {
    font-size: 1.5rem;
  }

  .faq-item h2 {
    font-size: 1.1rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .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: 4rem;
  }
  .highlight h1 {
    font-size: 1rem;
  }
  
}