/* TCL Policy & Info Pages CSS - GIGW 3.0 Compliant */
.tcl-policy-page {
  width: 100%;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: #fff;
  color: #222;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Container wrapper for content - allows full width with centered content */
.tcl-policy-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .tcl-policy-container {
    padding: 0 24px;
  }
}

@media (min-width: 992px) {
  .tcl-policy-container {
    padding: 0 48px;
  }
}

.tcl-policy-page h1 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary, #1a237e);
  margin-bottom: 1.5rem;
  text-align: center;
}
.tcl-policy-page h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary, #1a237e);
  margin-top: 2rem;
  margin-bottom: 0.7rem;
}
.tcl-policy-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.8rem;
  background-color: #f5f5f5;
  border-left: 3px solid var(--primary, #1a237e);
  border-radius: 0 4px 4px 0;
}
.tcl-policy-page section {
  margin-bottom: 1.5rem;
}
.tcl-policy-page a {
  color: var(--primary, #1a237e);
  text-decoration: underline;
  transition: color 0.2s;
}
.tcl-policy-page a:hover, .tcl-policy-page a:focus {
  color: var(--primary-dark, #0d133d);
  outline: 2px solid var(--primary, #1a237e);
  outline-offset: 2px;
}
.tcl-policy-page ul, .tcl-policy-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.tcl-policy-page li {
  margin-bottom: 0.5rem;
}
.tcl-policy-page p, .tcl-policy-page li, .tcl-policy-page address {
  font-size: 1.08rem;
}
.tcl-policy-page address {
  font-style: normal;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .tcl-policy-page {
    padding: 1rem 0.5rem;
    font-size: 0.98rem;
  }
  .tcl-policy-page h1 {
    font-size: 1.3rem;
  }
  .tcl-policy-page h2 {
    font-size: 1.05rem;
  }
  .tcl-policy-page h3 {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }
}
/* Accessibility: focus styles for all links and buttons */
.tcl-policy-page a:focus, .tcl-policy-page button:focus, .tcl-policy-page input:focus, .tcl-policy-page textarea:focus {
  outline: 2px solid #1a237e;
  outline-offset: 2px;
}

/* FAQ Page Specific Styles */
.faq-section {
  margin-bottom: 2rem;
}
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.faq-item h3 {
  color: #333;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.faq-answer {
  margin-top: 0.5rem;
  display: none; /* Hidden by default, will be shown via JavaScript */
}
/* First FAQ item answer visible by default */
.faq-section .faq-item:first-child .faq-answer {
  display: block;
} 