/* Import Noto Sans font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* Offset for fixed header */
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  background-color: #002366;
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-height: 100px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* Match section container padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  gap: 1.5rem;
}

.header-logo {
  flex-shrink: 0;
}
.header-logo .logo-image {
  height: 82px; /* Increased from 70px by another 17.5% */
  width: auto;
  object-fit: contain;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav .nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  transition: font-weight 0.2s ease;
  border-radius: 0.25rem;
  text-decoration: none;
}
.header-nav .nav-link:hover, .header-nav .nav-link:focus {
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
}
.header-nav .nav-link.active {
  font-weight: 900;
}
.header-nav .nav-link:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cta-account {
  background-color: #FFFFFF;
  color: #002366;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
}

.cta-account:hover {
  font-weight: 800;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #FFFFFF;
}

.cta-account:active {
  font-weight: 800;
  background-color: #f0f0f0;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-account.selected {
  font-weight: 800;
  background-color: #f0f0f0;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-account:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background-color: #f8f9fa;
}
.mobile-menu-toggle .hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #495057;
  margin: 2px 0;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 1rem; /* Match responsive section padding */
  }
  .header-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 575px) {
  .header-container {
    padding: 0 0.5rem; /* Match mobile section padding */
    min-height: 75px;
  }
  .header-logo .logo-image {
    height: 60px; /* Updated for new mobile height */
  }
  .main-content {
    margin-top: 75px; /* Account for mobile fixed header */
  }
}
.main-content {
  flex: 1;
  min-height: calc(100vh - 100px - 200px);
  margin-top: 100px; /* Account for fixed header */
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-section {
  padding: 4rem 0;
}
.content-section:first-child {
  padding-top: 6rem;
}
.content-section:last-child {
  padding-bottom: 2rem; /* Reduced from 6rem to 2rem */
}

.section-container {
  max-width: 100%;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 2rem;
  text-align: center;
}
.section-heading:empty::before {
  content: attr(data-placeholder);
  color: #ced4da;
  font-style: italic;
}

.section-content {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  border: 2px dashed #dee2e6;
  border-radius: 0.375rem;
  position: relative;
}
.section-content::before {
  content: "Content Placeholder";
  color: #ced4da;
  font-style: italic;
  font-size: 1.125rem;
}

.hero-section .section-content {
  min-height: 400px;
  background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
}
.hero-section .section-content::before {
  content: "Hero Section Content Placeholder";
}

.benefits-section {
  background-color: #fafafa;
}
.benefits-section .section-content {
  background-color: #ffffff;
}
.benefits-section .section-content::before {
  content: "Benefits Section Content Placeholder";
}

.process-section .section-content::before {
  content: "Process Section Content Placeholder";
}

.trust-section {
  background-color: #fafafa;
}
.trust-section .section-content {
  background-color: #ffffff;
}
.trust-section .section-content::before {
  content: "Trust Section Content Placeholder";
}

.responsible-gambling-section .section-content {
  border-color: #ffc107;
  background-color: rgb(255, 220.9, 118.6);
}
.responsible-gambling-section .section-content::before {
  content: "Responsible Gambling Section Content Placeholder";
  color: rgb(209.6, 157.2, 0);
}

@media (max-width: 991px) {
  .content-container {
    padding: 0 1rem;
  }
  .content-section {
    padding: 3rem 0;
  }
  .content-section:first-child {
    padding-top: 4rem;
  }
  .content-section:last-child {
    padding-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  .content-container {
    padding: 0 0.5rem;
  }
  .content-section {
    padding: 2rem 0;
  }
  .content-section:first-child {
    padding-top: 3rem;
  }
  .content-section:last-child {
    padding-bottom: 3rem;
  }
  .section-content {
    min-height: 150px;
  }
  .section-content::before {
    font-size: 1rem;
    text-align: center;
    padding: 1rem;
  }
  .hero-section .section-content {
    min-height: 300px;
  }
}
/* Global Footer */
.global-footer {
  background-color: #002366;
  color: #FFFFFF;
  margin-top: 0;
  font-family: "Noto Sans", sans-serif;
  padding: 1.5rem 0 1rem;
}

.footer-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-item {
  margin: 0;
}

.footer-link {
  display: block;
  padding: 0.5rem 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: font-weight 0.2s ease-in-out;
  text-transform: capitalize;
}

.footer-link:hover {
  color: #FFFFFF;
  font-weight: 800;
}

.footer-link:active,
.footer-link.active {
  color: #FFFFFF;
  font-weight: 900;
}

.compliance-notice {
  margin: 1rem auto 1rem auto;
  padding: 1.5rem 2rem;
  background-color: #001F54;
  border: 2px solid #FFFFFF;
  border-radius: 8px;
  max-width: 1040px;
}

.compliance-content {
  text-align: center;
}

.compliance-paragraph {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
  
  /* Prevent word breaking and hyphenation */
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.copyright-block {
  text-align: center;
  padding: 1rem;
  max-width: 1040px;
  margin: 0 auto;
}

.copyright-main {
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
  text-align: center;
}

.copyright-details {
  font-family: "Noto Sans", sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #D3D3D3;
  margin: 0 0 0.4rem 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.copyright-details:first-of-type {
  text-align: justify;
  text-justify: inter-word;
}

.copyright-details:last-child {
  margin-bottom: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  margin: 1rem auto;
  max-width: 1040px;
}

/* Legal Pages Body Content Styling - More Specific Selectors */
.content-section .section-container p,
.content-section .section-container li {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  max-width: 1136px;
  margin: 0 auto 2rem auto;
}

.content-section .section-container ul,
.content-section .section-container ol {
  max-width: 1136px;
  margin: 0 auto 2rem auto;
}

.content-section .section-container h1,
.content-section .section-container h2,
.content-section .section-container h3,
.content-section .section-container h4,
.content-section .section-container h5,
.content-section .section-container h6 {
  max-width: 1136px;
  margin: 0 auto 1.5rem auto;
}

/* Override legal page styling for specific elements */
.hero-disclaimer {
  font-size: 11px !important;
  color: #6A6A6A !important;
  font-style: italic !important;
  text-align: center !important;
  margin-top: 0.75rem !important;
  font-family: inherit !important;
  line-height: normal !important;
  max-width: none !important;
  margin-bottom: 0 !important;
}

.support-card p,
.support-card h3,
.support-card h4 {
  text-align: center !important;
  color: #FFFFFF !important;
  font-size: inherit !important;
  line-height: inherit !important;
  max-width: none !important;
  margin: inherit !important;
}

@media (max-width: 991px) {
  .footer-container {
    padding: 0 1.5rem;
  }
  .footer-links {
    gap: 0 1.5rem;
  }
  .compliance-notice {
    padding: 1rem 1.5rem;
  }
  .copyright-block {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 575px) {
  .footer-container {
    padding: 0 1rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .compliance-notice {
    padding: 1rem;
  }
  .compliance-paragraph {
    font-size: 11px;
  }
  .copyright-block {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .copyright-main,
  .copyright-details {
    font-size: 10px;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #007bff !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #343a40 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-muted {
  color: #6c757d !important;
}

.bg-primary {
  background-color: #007bff !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 2rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 2rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 2rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 2rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 2rem !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-sm {
  border-radius: 0.125rem !important;
}

.rounded-lg {
  border-radius: 0.375rem !important;
}

.rounded-xl {
  border-radius: 0.5rem !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

@media (max-width: 575px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
/* Modal Styles - Redesigned for My Account */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 35, 102, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1050;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.modal-content {
  position: relative;
  background-color: #002366;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 480px;
  width: 100%;
  min-height: 580px; /* Increased from 520px to accommodate signup form */
  max-height: 90vh;
  overflow-y: auto; /* Allow scrolling if needed */
  animation: modalSlideIn 0.3s ease-out;
  font-family: 'Noto Sans', sans-serif;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem 2rem;
  border-bottom: none;
}

.modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: 'Noto Sans', sans-serif;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  opacity: 0.7;
}

.modal-close:hover, .modal-close:focus {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-close:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.modal-body {
  padding: 0 2rem 2rem 2rem;
  height: calc(100% - 120px);
  display: flex;
  flex-direction: column;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  margin-bottom: 2rem;
  gap: 0.5rem;
}

.tab-button {
  flex: 1;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid #FF4F00;
  font-weight: 500;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-radius: 50px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
}

.tab-button:hover {
  background-color: #FF4F00;
  color: #FFFFFF;
}

.tab-button.active {
  background-color: #FF4F00;
  color: #FFFFFF;
  font-weight: 700;
  border-color: #FF4F00;
}

.tab-button:focus {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.tab-panel {
  display: none;
  flex: 1;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
}

/* Form Styles */
.auth-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #FFFFFF;
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  transition: all 0.2s ease-in-out;
}

.form-input:focus {
  outline: none;
  border-color: #FF4F00;
  box-shadow: 0 0 0 2px rgba(255, 79, 0, 0.2);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Submit Button */
.auth-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #FFFFFF;
  color: #002366;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: auto;
}

.auth-submit:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.auth-submit:active {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.auth-submit:focus {
  outline: 2px solid #FF4F00;
  outline-offset: 2px;
}

/* Message Styles */
.auth-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
}

.auth-message.error {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #FFFFFF;
}

.auth-message.success {
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.5);
  color: #FFFFFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 90%;
    min-height: 540px; /* Increased from 480px for mobile */
    max-height: 85vh;
  }
  
  .modal-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .modal-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .tab-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .tab-button {
    flex: none;
  }
}


:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #007bff;
  color: #ffffff;
  padding: 8px;
  text-decoration: none;
  border-radius: 0.25rem;
  z-index: 1070;
}
.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .global-header,
  .global-footer {
    display: none;
  }
  .main-content {
    margin: 0;
    padding: 0;
  }
  .content-section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  .section-content {
    border: 1px solid #ced4da;
    background: transparent !important;
  }
}

/*# sourceMappingURL=styles.css.map */

/* Hero Section Styles */
.hero-section {
  padding: 3rem 0;
  background-color: #FFFFFF; /* White background */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the section while extending full width */
}

.hero-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 500px; /* Ensure equal height columns */
  margin-bottom: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Start from top */
  align-items: flex-start; /* Left align content */
  text-align: left; /* Left align text */
  height: 600px; /* Fixed height to ensure space distribution */
}

.hero-headline {
  font-size: 48px; /* Changed from 42px to 48px */
  font-weight: 800;
  line-height: 1.2;
  color: #002366; /* Royal Blue */
  margin-bottom: 0; /* Remove margin */
  text-align: justify; /* Justified text */
  text-justify: inter-word; /* Consistent word spacing */
  flex-shrink: 0; /* Don't shrink */
}

.hero-intro {
  font-size: 1.125rem; /* 18px for desktop */
  line-height: 2.2; /* Increased to 2.2 for better vertical space allocation */
  color: #002366; /* Royal Blue */
  margin-bottom: 0; /* Remove margin */
  margin-top: auto; /* Push to center */
  margin-bottom: auto; /* Center vertically */
  text-align: justify; /* Justified text */
  text-justify: inter-word; /* Consistent word spacing */
  font-weight: 400; /* Regular weight */
  flex-shrink: 0; /* Don't shrink */
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align CTA elements */
  width: 100%; /* Full width to center within the text block */
  margin-top: auto; /* Push to bottom */
  flex-shrink: 0; /* Don't shrink */
}

.hero-cta-button {
  background-color: #FF0800; /* Candy Apple Red */
  color: #ffffff;
  font-size: 1rem; /* 16px as specified */
  font-weight: 800; /* ExtraBold */
  padding: 1rem 2rem;
  border-radius: 999px; /* Pill shape */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: max-content; /* Match disclaimer text width */
  align-self: center; /* Center-aligned */
}

.hero-cta-button:hover,
.hero-cta-button:focus {
  background-color: #CC0600; /* Darker Candy Apple Red on hover */
  outline: 2px solid #FF0800;
  outline-offset: 2px;
}

.hero-disclaimer {
  font-size: 11px; /* Specified font size */
  color: #6A6A6A; /* Subtle grey */
  font-style: italic;
  text-align: center; /* Center-aligned with CTA */
  margin-top: 0.75rem; /* Spacing as specified */
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center image */
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Features Strip - Reduced Scale */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #E5E5E5; /* Light grey separator above */
  border-bottom: 1px solid #E5E5E5; /* Light grey separator below */
  margin-top: 2rem; /* Spacing from hero content */
}

.feature-item {
  text-align: center;
  padding: 1rem; /* Reduced padding */
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem; /* Increased from 2.5rem to make icons bigger */
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
}

.feature-icon svg {
  width: 28px; /* Increased from 20px to make icons bigger */
  height: 28px;
}

.feature-title {
  font-size: 0.9375rem; /* 15px as specified */
  font-weight: 500;
  color: #002366; /* Royal Blue */
  margin-bottom: 0.5rem;
  text-align: center; /* Centered under icon */
}

.feature-caption {
  font-size: 0.8125rem; /* 13px - reduced scale */
  line-height: 1.4;
  color: #ffffff; /* White text for contrast */
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-content {
    order: 1;
    text-align: left; /* Maintain left alignment on mobile */
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-headline {
    font-size: 34px; /* Proportionally scaled from 48px for mobile */
  }
  
  .hero-subheadline {
    font-size: 1.125rem; /* Adjusted for mobile */
  }
  
  .hero-intro {
    font-size: 1rem;
  }
  
  .hero-cta-button {
    align-self: center;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Revert to normal spacing on smaller screens */
@media (max-width: 1023px) {
  .hero-content {
    justify-content: flex-start; /* Normal top-aligned content */
    height: auto; /* Remove fixed height */
  }
  
  .hero-headline {
    margin-bottom: 1rem; /* Restore normal spacing */
  }
  
  .hero-intro {
    margin-bottom: 2rem; /* Restore normal spacing */
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-headline {
    font-size: 32px; /* Proportionally scaled from 48px for small mobile */
  }
  
  .hero-subheadline {
    font-size: 1.125rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
}

/* Mobile Safety Mechanism - Revert to left alignment on very small screens */
@media (max-width: 399px) {
  .hero-headline,
  .hero-intro {
    text-align: left;
  }
}



/* Benefits Section Styles */
.benefits-section {
  padding: 4rem 0;
  background-color: #FFFFFF; /* White background as specified */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the section while extending full width */
  font-family: "Noto Sans", sans-serif; /* Noto Sans font family */
  color: #002366; /* Royal Blue default font color */
}

.benefits-section .section-container {
  max-width: 1200px; /* Container width as specified */
  margin: 0 auto;
  padding: 0 2rem; /* Padding as specified */
}

.benefits-content {
  text-align: center; /* Changed back to center for headline */
  margin-bottom: 3rem;
  max-width: 1136px; /* Max width for optimal line length */
  margin-left: auto;
  margin-right: auto;
}

.benefits-headline {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  text-justify: inter-word;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.benefits-intro {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  max-width: 1136px;
  margin: 0 auto 2rem auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  grid-template-rows: repeat(2, 1fr); /* 2 rows as specified */
  gap: 1.5rem; /* Consistent spacing as specified */
  margin-top: 3rem;
  max-width: 1136px; /* Match content width */
  margin-left: auto;
}

.benefit-card {
  background: #FFFFFF; /* White background as specified */
  border: 2px solid #FF0800; /* Candy Apple Red border */
  border-radius: 8px; /* 8px border radius as specified */
  padding: 2rem; /* Increased padding for better spacing */
  text-align: center; /* Center all text content */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  min-height: 380px; /* Increased height for bigger icons */
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 8, 0, 0.15); /* Candy Apple Red shadow */
}

.benefit-icon {
  color: #FF0800; /* Candy Apple Red as specified */
  margin-bottom: 1.5rem; /* Increased spacing */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
}

.benefit-icon svg {
  width: 80px; /* Desktop icon size as specified */
  height: 80px;
}

.benefit-title {
  font-size: 1.125rem; /* 18px as specified */
  font-weight: 700; /* Bold as specified */
  line-height: 1.3;
  color: #002366; /* Royal Blue */
  margin-bottom: 0.75rem; /* Increased spacing for better proportion */
  text-align: center; /* Center aligned as specified */
  font-family: "Noto Sans", sans-serif;
}

.benefit-caption {
  font-size: 1rem; /* 16px as specified */
  font-weight: 400; /* Regular as specified */
  line-height: 1.5; /* As specified */
  color: #002366; /* Royal Blue */
  text-align: center; /* Center aligned as specified */
  font-family: "Noto Sans", sans-serif;
  flex-grow: 1; /* Fill remaining space for consistent card heights */
  display: flex;
  align-items: center; /* Vertically center the caption text */
  justify-content: center; /* Horizontally center the caption text */
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    grid-template-rows: auto; /* Auto rows */
    gap: 1.5rem;
  }
  
  .benefits-headline {
    font-size: 24px; /* 24px mobile as specified */
  }
  
  .benefits-intro {
    font-size: 16px; /* 16px for mobile */
  }
  
  .benefit-card {
    padding: 1.5rem;
    min-height: 340px; /* Adjusted for bigger icons on mobile */
  }
  
  .benefit-icon svg {
    width: 60px; /* Mobile icon size - proportionally scaled from 80px */
    height: 60px;
  }
  
  .benefit-title {
    font-size: 1rem; /* 16px for mobile */
  }
  
  .benefit-caption {
    font-size: 0.875rem; /* 14px for mobile */
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 3rem 0;
  }
  
  .benefits-content {
    margin-bottom: 2rem;
  }
  
  .benefit-card {
    padding: 1.25rem;
    min-height: 300px; /* Adjusted for smaller screens but still accommodating bigger icons */
  }
  
  .benefit-icon svg {
    width: 40px; /* Very small mobile icon size - proportionally scaled from 80px */
    height: 40px;
  }
}

/* Process Section Styles */
.process-section {
  padding: 4rem 0;
  background-color: #FFFFFF; /* White background as specified */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the section while extending full width */
  font-family: "Noto Sans", sans-serif; /* Noto Sans font family */
  color: #002366; /* Royal Blue default font color */
}

.process-section .section-container {
  max-width: 1200px; /* Container width as specified */
  margin: 0 auto;
  padding: 0 2rem; /* Padding as specified */
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 1136px; /* Max width for optimal line length */
  margin-left: auto;
  margin-right: auto;
}

.process-headline {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  text-justify: inter-word;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.process-intro {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  max-width: 1136px;
  margin: 0 auto 2rem auto;
}/* Process Steps Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 2rem; /* 2rem gap as specified */
  margin-top: 3rem;
  max-width: 1136px; /* Match content width */
  margin-left: auto;
  margin-right: auto;
}

/* Process Step Cards */
.process-step-card {
  background: #002366; /* Royal Blue background as specified */
  color: #FFFFFF; /* White text as specified */
  border-radius: 8px; /* 8px border radius as specified */
  padding: 2rem; /* 2rem padding as specified */
  text-align: center; /* Center all text content */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  min-height: 320px; /* Consistent card height */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1); /* Box shadow as specified */
}

.process-step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 35, 102, 0.2); /* Royal Blue shadow on hover */
}

/* Step Number */
.step-number {
  font-size: 14px; /* 14-15px as specified */
  font-weight: 600; /* As specified */
  color: #FFFFFF; /* White color */
  text-transform: uppercase; /* As specified */
  margin-bottom: 0.5rem; /* As specified */
  font-family: "Noto Sans", sans-serif;
}

/* Step Icon Container */
.step-icon-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Step Icon */
.step-icon {
  width: 60px; /* 60px as specified */
  height: 60px;
  fill: #FFFFFF; /* White icons as specified */
}

/* Step Title */
.step-title {
  font-size: 1.125rem; /* 18px - within 16-18px range */
  font-weight: 700; /* Bold as specified */
  color: #FFFFFF; /* White color */
  margin-bottom: 0.5rem; /* As specified */
  text-align: center; /* Center aligned */
  font-family: "Noto Sans", sans-serif;
  line-height: 1.3;
}

/* Step Caption */
.step-caption {
  font-size: 1rem; /* 16px - within 14-16px range */
  font-weight: 400; /* Regular as specified */
  line-height: 1.5; /* As specified */
  color: #FFFFFF; /* White color */
  text-align: center; /* Center aligned */
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  flex-grow: 1; /* Fill remaining space for consistent card heights */
  display: flex;
  align-items: center; /* Vertically center the caption text */
  justify-content: center; /* Horizontally center the caption text */
}

/* Process Section Responsive Design */
@media (max-width: 768px) {
  .process-section {
    padding: 3rem 0;
  }
  
  .process-section .section-container {
    padding: 0 1rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 1.5rem; /* Even spacing */
  }
  
  .process-step-card {
    min-height: 280px;
    padding: 1.5rem;
  }
  
  .process-headline {
    font-size: 24px; /* 24px mobile as specified */
  }
  
  .process-intro {
    font-size: 16px; /* 16px for mobile */
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
  }
  
  .step-title {
    font-size: 1rem; /* 16px for mobile */
  }
  
  .step-caption {
    font-size: 0.875rem; /* 14px for mobile */
  }
}

@media (max-width: 480px) {
  .process-section .section-container {
    padding: 0 0.5rem;
  }
  
  .process-step-card {
    padding: 1.25rem;
    min-height: 260px;
  }
  
  .step-icon {
    width: 40px;
    height: 40px;
  }
}

/* Trust Section Styles */
.trust-section {
  padding: 4rem 0;
  background-color: #FFFFFF; /* White background as specified */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the section while extending full width */
  font-family: "Noto Sans", sans-serif; /* Noto Sans font family */
  color: #002366; /* Royal Blue default font color */
}

.trust-section .section-container {
  max-width: 1200px; /* Container width as specified */
  margin: 0 auto;
  padding: 0 2rem; /* Padding as specified */
}

/* Trust Header Block (Full Width) */
.trust-header-block {
  margin-bottom: 3rem; /* 48px bottom margin */
  text-align: center; /* Center-aligned text */
  max-width: 1136px; /* Max width for optimal line length */
  margin-left: auto;
  margin-right: auto;
}

.trust-headline {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  text-justify: inter-word;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.trust-intro {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  max-width: 1136px;
  margin: 0 auto 2rem auto;
}
/* Trust Feature Cards Grid */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  grid-template-rows: repeat(2, 1fr); /* 2 rows for 2x3 grid */
  gap: 1.5rem; /* 1.5rem gap as specified */
  margin-top: 3rem;
  max-width: 1136px; /* Match content width */
  margin-left: auto;
  margin-right: auto;
}

/* Trust Feature Cards */
.trust-feature-card {
  background: #FFFFFF; /* White background as specified */
  padding: 1.5rem; /* 24px internal padding as specified */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Subtle soft shadow as specified */
  border-radius: 8px; /* 8px border radius as specified */
  text-align: center; /* Center all text content */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  min-height: 280px; /* Consistent card height */
}

.trust-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

/* Trust Feature Icon Container */
.trust-feature-icon-container {
  margin-bottom: 1rem; /* As specified */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Trust Feature Icon Background - Lime Green Circle */
.trust-feature-icon-background {
  width: 60px; /* 60px as requested */
  height: 60px;
  background-color: #32CD32; /* Lime Green as specified */
  border-radius: 50%; /* Perfect circle */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative; /* For better positioning control */
}

/* Trust Feature Icon */
.trust-feature-icon {
  width: 28px; /* Slightly smaller for better centering */
  height: 28px;
  fill: #FFFFFF; /* White icons as specified */
  position: absolute; /* Absolute positioning for perfect centering */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Perfect center alignment */
}

.trust-feature-card:hover .trust-feature-icon-background {
  transform: scale(1.05); /* Subtle scale-up on hover */
  box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3); /* Lime green glow */
}

/* Trust Feature Title */
.trust-feature-title {
  font-size: 1.125rem; /* 18px - within 16-18px range */
  font-weight: 700; /* Bold as specified */
  color: #002366; /* Royal Blue */
  margin-bottom: 0.5rem; /* As specified */
  text-align: center; /* Center aligned */
  font-family: "Noto Sans", sans-serif;
  line-height: 1.3;
}

/* Trust Feature Caption */
.trust-feature-caption {
  font-size: 1rem; /* 16px - within 14-16px range */
  font-weight: 400; /* Regular as specified */
  line-height: 1.5; /* As specified */
  color: #002366; /* Royal Blue */
  text-align: center; /* Center aligned */
  font-family: "Noto Sans", sans-serif;
  margin: 0;
  flex-grow: 1; /* Fill remaining space for consistent card heights */
  display: flex;
  align-items: center; /* Vertically center the caption text */
  justify-content: center; /* Horizontally center the caption text */
}

.trust-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Trust Header Block (Full Width) */
.trust-header-block {
  margin-bottom: 40px; /* 40px bottom margin as specified */
  text-align: center; /* Center-aligned text */
}

/* Trust Columns Wrapper (Equal Height Flexbox) */
.trust-columns-wrapper {
  display: flex;
  gap: 2rem;
  align-items: stretch; /* Equal height columns */
}

/* Trust Feature Cards Grid */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns for trust cards */
  gap: 1.5rem;
}

.trust-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.trust-icon svg {
  width: 32px;
  height: 32px;
  fill: #1a2a55;
}

.trust-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2a55;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.trust-card-caption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

/* Trust Credentials (Right Column) */
.trust-credentials {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.credentials-block {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  position: sticky;
  top: 2rem; /* Sticky positioning for better UX */
}

.credentials-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2a55;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #1a2a55;
  padding-bottom: 0.5rem;
}

.credential-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.credential-item:last-child {
  margin-bottom: 0;
}

.credential-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.credential-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1a2a55;
  font-family: 'Courier New', monospace; /* Monospaced font for credentials */
  line-height: 1.4;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .trust-layout {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 3rem;
  }
  
  .trust-headline {
    font-size: 2rem;
  }
  
  .trust-subheadline {
    font-size: 1.125rem;
  }
  
  .trust-intro {
    font-size: 1rem;
  }
  
  .trust-cards {
    grid-template-columns: 1fr; /* Single column for cards on mobile */
    gap: 1rem;
  }
  
  .trust-card {
    padding: 1.25rem;
  }
  
  .credentials-block {
    position: static; /* Remove sticky positioning on mobile */
    padding: 1.5rem;
  }
  
  .credential-value {
    font-size: 0.875rem;
  }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
  .trust-layout {
    gap: 3rem;
  }
  
  .trust-headline {
    font-size: 2.25rem;
  }
  
  .trust-cards {
    gap: 1.25rem;
  }
}

/* Accessibility Enhancements */
.trust-card:focus-within {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

.credential-item:focus-within {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .trust-card {
    border-width: 2px;
  }
  
  .credentials-block {
    border-width: 2px;
  }
}


/* Left Column - Trust Feature Cards */
.trust-features-column {
  flex: 1; /* Equal width with right column */
  display: flex;
  flex-direction: column;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns for 2x3 grid */
  grid-template-rows: repeat(2, 1fr); /* 2 rows for 2x3 grid */
  gap: 1.5rem;
  height: 100%; /* Fill the column height */
}

.trust-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align all content horizontally */
  justify-content: center; /* Center-align content vertically */
  text-align: center; /* Center-align text content */
}

.trust-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-feature-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width for centering */
  text-align: center; /* Explicitly center the icon */
}

.trust-feature-icon svg {
  width: 36px;
  height: 36px;
  fill: #1a2a55;
}

.trust-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2a55;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center; /* Explicitly center the title */
}

.trust-feature-caption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  text-align: center; /* Explicitly center the caption */
}

/* Right Column - Company Information Card */
.trust-company-column {
  flex: 1; /* Takes 1/3 of the space */
  display: flex;
  flex-direction: column;
}

.company-info-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  height: 100%; /* Match the height of trust cards column */
  display: flex;
  flex-direction: column;
}

.company-info-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2a55;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #1a2a55;
  padding-bottom: 0.5rem;
}

.company-info-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem; /* 16px vertical spacing as specified */
}

.company-info-item:last-child {
  margin-bottom: 0;
}

.company-info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.company-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: #1a2a55;
  font-family: 'Courier New', monospace; /* Monospaced font for credentials */
  line-height: 1.4;
}

/* Mobile Responsive Design for Trust Section */
@media (max-width: 768px) {
  .trust-columns-wrapper {
    flex-direction: column; /* Stack vertically on mobile */
    gap: 2rem;
  }
  
  .trust-headline {
    font-size: 2rem;
  }
  
  .trust-subheadline {
    font-size: 1.125rem;
  }
  
  .trust-intro {
    font-size: 1rem;
  }
  
  .trust-cards-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    grid-template-rows: auto; /* Auto rows on mobile */
    gap: 1rem;
  }
  
  .trust-feature-card {
    padding: 1.25rem;
  }
  
  .company-info-card {
    padding: 1.5rem;
    height: auto; /* Auto height on mobile */
  }
  
  .company-info-value {
    font-size: 0.875rem;
  }
}

/* Tablet Responsive Design for Trust Section */
@media (max-width: 1024px) and (min-width: 769px) {
  .trust-columns-wrapper {
    gap: 1.5rem;
  }
  
  .trust-headline {
    font-size: 2.25rem;
  }
  
  .trust-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    grid-template-rows: repeat(3, 1fr); /* 3 rows on tablet */
    gap: 1.25rem;
  }
}

/* Accessibility Enhancements for Trust Section */
.trust-feature-card:focus-within {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

.company-info-item:focus-within {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast mode support for Trust Section */
@media (prefers-contrast: high) {
  .trust-feature-card {
    border-width: 2px;
  }
  
  .company-info-card {
    border-width: 2px;
  }
}


/* Trust Card Classes (for cards C, D, E, F) - Center Alignment */
.trust-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center-align all content horizontally */
  justify-content: center; /* Center-align content vertically */
  text-align: center; /* Center-align text content */
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width for centering */
  text-align: center; /* Explicitly center the icon */
}

.trust-icon svg {
  width: 36px;
  height: 36px;
  fill: #1a2a55;
}

.trust-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2a55;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center; /* Explicitly center the title */
}

.trust-card-caption {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
  text-align: center; /* Explicitly center the caption */
}


/* Contact Section Styles - REBUILT FOR PROPER TWO-COLUMN LAYOUT */
.contact-section {
  background-color: #FFFFFF; /* White background as specified */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center and extend to edges */
  padding: 4rem 0; /* 64px top and bottom padding */
}

.contact-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Contact Header Block (Full Width) */
.contact-header-block {
  margin-bottom: 4rem; /* 64px bottom margin as specified */
  text-align: center; /* Center-aligned text */
}

/* Contact Section Headline - Final Typographic Spec */
.contact-headline {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  text-justify: inter-word;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Contact Section Introduction Copy - Final Typographic Spec */
.contact-intro {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  max-width: 1136px;
  margin: 0 auto 2rem auto;
}

/* TWO-COLUMN LAYOUT - PROPER FLEXBOX STRUCTURE */
.contact-columns {
  display: flex;
  gap: 2.5rem; /* 40px gap between columns */
  align-items: flex-start; /* Align columns to top */
  justify-content: center; /* Center the columns within container */
  flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* LEFT COLUMN - Support Methods */
.contact-support-column {
  flex: 1; /* Equal width */
  max-width: 500px; /* Maximum width for better proportions */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content within column */
}

/* RIGHT COLUMN - Contact Form */
.contact-form-column {
  flex: 1; /* Equal width */
  max-width: 500px; /* Maximum width for better proportions */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content within column */
}

/* Column Headings */
.column-heading {
  font-family: "Noto Sans", sans-serif;
  color: #002366;
  font-weight: 800;
  font-size: 22px; /* Desktop: 20-24px range */
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Support Card Styles */
.support-card {
  background: #002366; /* Royal Blue background as specified */
  color: #FFFFFF; /* White text */
  border: none; /* Remove border */
  border-radius: 8px;
  padding: 1.5rem 2rem; /* As specified: 1.5rem–2rem */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Subtle shadow as specified */
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically - ensures equal top/bottom margins */
  gap: 1rem; /* Space between icon and content */
  transition: all 0.2s ease;
  margin-bottom: 2.5rem; /* 40px gap between cards */
  width: 100%; /* Full width of column */
  max-width: 500px; /* Match column max-width */
  min-height: 220px; /* Updated to 220px as requested */
  height: 220px; /* Fixed height for consistent vertical centering */
  text-align: center; /* Center all text */
}

.support-card:last-child {
  margin-bottom: 0; /* Remove margin from last card */
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Support Icon */
.support-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto; /* Auto width for icon */
  height: auto; /* Auto height for icon */
  background: none; /* No background */
  border-radius: 0; /* No border radius */
}

.support-icon svg {
  width: 36px; /* 32-40px range as specified */
  height: 36px;
  fill: #FFFFFF; /* White icons as specified */
}

/* Support Content */
.support-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically */
  text-align: center; /* Center text alignment */
}

.support-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 17px; /* 16-18px range as specified */
  font-weight: 700; /* Bold as specified */
  color: #FFFFFF; /* White text */
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center; /* Center aligned as specified */
}

.support-details {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px; /* 14-16px range as specified */
  line-height: 1.5; /* As specified */
  color: #FFFFFF; /* White text */
  margin: 0;
  text-align: center; /* Center aligned as specified */
}

/* Form Container Styling - Royal Blue Background */
.form-container {
  background: #002366; /* Royal Blue background as requested */
  color: #FFFFFF; /* White text for contrast */
  border: none; /* Remove border */
  border-radius: 8px;
  padding: 1.5rem; /* Reduced padding to allow more space for content centering */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Match support card shadow */
  width: 100%; /* Full width of column */
  max-width: 500px; /* Match column max-width */
  height: 480px; /* Match total support cards height: 220px + 40px + 220px */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content horizontally */
  justify-content: center; /* Center content vertically - ensures equal top/bottom margins */
}

/* Elfsight Form Styling */
.contact-form-column .elfsight-app-5feba7c3-4f3f-43fd-82d6-f85b613526fa {
  width: 100%; /* Fill container width */
  max-height: 400px; /* Limit height to allow for vertical centering */
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center form elements vertically */
}

/* Company Information Block */
.company-info-block {
  background: #002366; /* Royal Blue background as specified */
  color: #FFFFFF; /* White text */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06); /* Same as support cards */
  padding: 2rem 3rem; /* Increased horizontal padding for better visual fit */
  margin: 2.5rem auto 0 auto; /* 40px gap above, centered horizontally */
  max-width: 1040px; /* Match combined contact cards width (500px + 40px + 500px) */
  width: 100%;
}

/* Company Information Title */
.company-info-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 800; /* As specified */
  font-size: 21px; /* 20-22px range as specified */
  text-align: center; /* Center aligned as specified */
  color: #FFFFFF;
  margin-bottom: 1.5rem; /* As specified */
  margin-top: 0;
}

/* Inner Container - Centered Content Block */
.company-info-inner-container {
  max-width: 580px; /* Reduced width for better proportions with 1040px card */
  margin-left: auto; /* Center the block */
  margin-right: auto; /* Center the block */
}

.company-info-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column layout */
  gap: 0; /* No gap - spacing handled by row padding */
}

.company-info-row {
  display: grid;
  grid-template-columns: auto 1fr; /* Label auto-width, value fills remaining */
  gap: 1rem; /* Space between label and value */
  align-items: start; /* Align to top for multi-line values */
  padding-top: 0.875rem; /* 0.75rem-1rem range as specified */
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12); /* Divider as specified */
}

/* Remove border from last row */
.company-info-row:last-child {
  border-bottom: none;
}

.company-info-label {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600; /* As specified */
  font-size: 15px; /* 14-15px range as specified */
  color: #FFFFFF;
  white-space: nowrap; /* Prevent label wrapping */
  text-align: left; /* Left-aligned as specified */
  text-transform: uppercase; /* Uppercase as specified */
}

.company-info-value {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700; /* Bold as specified */
  font-size: 16px; /* 16-17px range as specified */
  line-height: 1.4; /* As specified */
  color: #FFFFFF;
  text-align: left; /* Left-aligned as specified */
}

/* RESPONSIVE DESIGN - Mobile Breakpoint */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-section .section-container {
    padding: 0 1rem;
  }
  
  .contact-header-block {
    margin-bottom: 2rem;
  }
  
  /* Contact Section Headline - Mobile */
  .contact-headline {
    font-size: 24px; /* Mobile responsive rule */
  }
  
  /* Column Headings - Mobile */
  .column-heading {
    font-size: 19px; /* Mobile: 18-20px range */
    margin-bottom: 1.5rem;
    text-align: center; /* Center headings on mobile */
  }
  
  /* MOBILE: Stack columns vertically */
  .contact-columns {
    flex-direction: column;
    gap: 2rem;
    align-items: center; /* Center columns on mobile */
  }
  
  .contact-support-column,
  .contact-form-column {
    max-width: 100%; /* Full width on mobile */
    width: 100%; /* Ensure full width */
  }
  
  .support-card {
    padding: 1.5rem; /* Reduced padding on mobile */
    margin-bottom: 2rem; /* Proportional gap on mobile (32px) */
    max-width: 100%; /* Full width on mobile */
    min-height: 180px; /* Proportionally reduced height on mobile */
    height: 180px; /* Fixed height for consistent vertical centering on mobile */
    justify-content: center; /* Maintain vertical centering on mobile */
  }
  
  .form-container {
    padding: 1.5rem;
    height: auto; /* Auto height on mobile */
    min-height: 300px; /* Minimum height on mobile */
    max-width: 100%; /* Full width on mobile */
    justify-content: center; /* Maintain vertical centering on mobile */
    align-items: center; /* Maintain horizontal centering on mobile */
  }
  
  /* Company Information Block - Mobile */
  .company-info-block {
    padding: 1.5rem 2rem; /* Increased horizontal padding on mobile for better fit */
    margin-top: 2rem; /* 32px gap on mobile (proportionally scaled from 40px) */
  }
  
  .company-info-title {
    font-size: 19px; /* Slightly smaller on mobile */
    margin-bottom: 1.25rem; /* Reduced margin on mobile */
  }
  
  .company-info-inner-container {
    max-width: 100%; /* Full width on mobile */
  }
  
  .company-info-row {
    grid-template-columns: 1fr; /* Stack label/value pairs on mobile */
    gap: 0.25rem; /* Smaller gap between label and value */
    padding-top: 0.75rem; /* Slightly reduced padding on mobile */
    padding-bottom: 0.75rem;
  }
  
  .company-info-label {
    font-size: 14px; /* Slightly smaller on mobile */
    margin-bottom: 0.25rem; /* Small margin below label on mobile */
  }
  
  .company-info-value {
    font-size: 15px; /* Slightly smaller on mobile */
  }
}

/* Responsible Gambling Notice Section - Full Width Royal Blue Background */
.responsible-gambling-notice {
  background-color: #002366;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 3rem 0;
}

.notice-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Regulatory Logos Section - White Background */
.regulatory-logos-section {
  background-color: #FFFFFF;
  width: 100%;
  padding: 2rem 0;
  margin-bottom: 0;
}

.logos-container {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 2rem;
}

.notice-card {
  background-color: transparent;
  color: #FFFFFF;
  border: 5px solid #FFFFFF;
  border-radius: 12px;
  max-width: 100%;
  padding: 3rem 2rem;
}

.notice-headline {
  font-family: "Noto Sans", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.notice-paragraph {
  font-family: "Noto Sans", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: justify;
  text-justify: inter-word;
  max-width: 960px;
  margin: 0 auto;
  
  /* Prevent word breaking and hyphenation */
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  
  /* Improved text rendering */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* Better word spacing for justified text */
  word-spacing: 0.1em;
  letter-spacing: 0.01em;
  
  /* Prevent orphans and widows */
  orphans: 2;
  widows: 2;
}

.logo-strip-container {
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}

.logo-strip {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-strip img {
  height: auto;
  max-height: 60px;
  max-width: 120px;
}

.regulatory-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.regulatory-link:hover {
  opacity: 0.8;
}
/* Mobile Responsive Design */
@media (max-width: 768px) {
  .notice-headline {
    font-size: 32px;
  }
  .notice-card {
    padding: 2rem 1.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .regulatory-link {
    transition: none; /* Remove transitions for users who prefer reduced motion */
  }
  
  .regulatory-link:hover,
  .regulatory-link:focus {
    transform: none; /* Remove lift effect for reduced motion */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Reduced shadow for reduced motion */
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .responsible-gambling-section {
    border-top: 3px solid #ffffff;
  }
  
  .responsible-gambling-card {
    border-width: 3px; /* Even thicker border for high contrast */
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.1); /* Enhanced glow */
  }
  
  .regulatory-link:hover,
  .regulatory-link:focus {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow for high contrast */
    outline: 2px solid #000000; /* Add outline for high contrast mode */
    outline-offset: 2px;
  }
}


/* Subpage Styles */
.subpage-hero {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 3rem 0 2rem;
}

.hero-container {
  max-width: 1120px; /* Increased from 720px */
  margin: 0 auto;
  padding: 0 24px; /* Consistent horizontal padding */
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a55;
  margin-bottom: 2rem; /* Increased spacing */
  line-height: 1.2;
  margin-top: 3rem; /* Added top margin */
}

.hero-date {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1.5rem; /* Consistent spacing */
  font-weight: 500;
}

.hero-blurb {
  font-size: 1.125rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 80ch; /* Limit line length for readability */
  margin-left: auto;
  margin-right: auto;
}

.subpage-content {
  padding: 3rem 0;
}

.subpage-content .content-container {
  max-width: 1200px; /* Set reasonable max width */
  margin: 0 auto;
  padding: 0 2rem; /* Fixed padding */
}

.subpage-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a2a55;
  margin-top: 3rem; /* Increased spacing */
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-transform: uppercase; /* Match source styling */
}

.subpage-content h2:first-child {
  margin-top: 0;
}

.subpage-content p {
  font-size: 1rem;
  color: #1a2a55;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  /* Removed max-width constraint to prevent unwanted wrapping */
}

.subpage-content ul,
.subpage-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem; /* Increased padding for bullet visibility */
  list-style-position: outside; /* Ensure bullets are outside */
}

.subpage-content ul {
  list-style-type: disc; /* Ensure bullet points are visible */
}

.subpage-content ol {
  list-style-type: decimal; /* Ensure numbers are visible */
}

.subpage-content li {
  font-size: 1rem;
  color: #1a2a55;
  line-height: 1.6;
  margin-bottom: 1rem; /* Increased spacing between list items */
  display: list-item; /* Ensure proper list item display */
}

.subpage-content a {
  color: #1a2a55;
  font-weight: 600;
  text-decoration: none;
}

.subpage-content a:hover {
  font-weight: 700;
}

/* Table of Contents specific styling */
.subpage-content .toc {
  margin-bottom: 2rem;
}

.subpage-content .toc ol {
  counter-reset: section-counter 0;
  padding-left: 0;
  list-style: none;
}

.subpage-content .toc li {
  counter-increment: section-counter;
  margin-bottom: 0.75rem; /* Consistent spacing */
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
}

.subpage-content .toc li::before {
  content: counter(section-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #1a2a55;
}

/* Mobile responsive styles for subpages */
@media (max-width: 1200px) {
  .subpage-content .content-container {
    padding: 0 4%; /* Reduced padding on mobile */
  }
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: 2rem 0 1.5rem;
  }
  
  .hero-container,
  .subpage-content .content-container {
    padding: 0 16px; /* Reduced padding on mobile */
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-top: 1.5rem; /* Reduced top margin on mobile */
  }
  
  .hero-blurb {
    font-size: 1rem;
  }
  
  .subpage-content {
    padding: 2rem 0;
  }
  
  .subpage-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem; /* Reduced spacing on mobile */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .subpage-content h2 {
    font-size: 1.375rem;
  }
}


/* Subpage CTA Button */
.subpage-cta {
  text-align: center;
  margin-top: 4rem; /* 64px above footer */
  margin-bottom: 0; /* No margin before footer to match homepage */
}

.cta-secondary {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2a55;
  background-color: transparent;
  border: 2px solid #1a2a55;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-secondary:hover {
  background-color: #1a2a55;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 42, 85, 0.2);
}

.cta-secondary:focus {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

/* Mobile responsive for CTA button */
@media (max-width: 768px) {
  .subpage-cta {
    margin-top: 3rem;
    margin-bottom: 0; /* No margin before footer to match homepage */
  }
  
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
  }
}


/* Table Styles for Subpages */
.subpage-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
}

.subpage-content table th {
  background-color: #f8f9fa;
  color: #1a2a55;
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
}

.subpage-content table td {
  padding: 1rem;
  border: 1px solid #e0e0e0;
  color: #1a2a55;
  line-height: 1.6;
  vertical-align: top;
}

.subpage-content table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.subpage-content table tr:hover {
  background-color: #f0f0f0;
}

/* Mobile responsive tables */
@media (max-width: 768px) {
  .subpage-content table {
    font-size: 0.9rem;
  }
  
  .subpage-content table th,
  .subpage-content table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .subpage-content table {
    font-size: 0.85rem;
  }
  
  .subpage-content table th,
  .subpage-content table td {
    padding: 0.5rem 0.25rem;
  }
}


/* Age Verification Modal Styles */
.age-verification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-verification-modal {
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  opacity: 0.95;
  font-family: "Noto Sans", sans-serif;
}

.age-verification-banner {
  background-color: #FF0800;
  padding: 16px 32px;
  text-align: center;
}

.age-verification-banner h2 {
  color: #000000;
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.age-verification-content {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 120px;
}

.age-verification-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 4px solid #FF0800;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 auto;
  background: transparent;
  font-family: "Noto Sans", sans-serif;
}

.age-verification-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  text-align: left;
  text-align: justify;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.age-verification-buttons {
  padding: 0 32px 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-verification-button {
  flex: 1;
  padding: 12px 24px;
  border: none;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Noto Sans", sans-serif;
}

.age-verification-button.confirm {
  background-color: #32CD32;
}

.age-verification-button.confirm:hover {
  filter: brightness(0.9);
  box-shadow: 0 2px 8px rgba(50, 205, 50, 0.3);
}

.age-verification-button.deny {
  background-color: #FF0800;
}

.age-verification-button.deny:hover {
  filter: brightness(0.9);
  box-shadow: 0 2px 8px rgba(255, 8, 0, 0.3);
}

.age-verification-button:focus {
  outline: 2px solid #0066CC;
  outline-offset: 2px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .age-verification-modal {
    max-width: 90%;
    margin: 20px;
  }
  
  .age-verification-banner h2 {
    font-size: 14px;
  }
  
  .age-verification-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .age-verification-icon {
    width: 100px;
    height: 100px;
    font-size: 20px;
  }
  
  .age-verification-text {
    text-align: justify;
  }
  
  .age-verification-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .age-verification-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .age-verification-content {
    padding: 24px;
  }
  
  .age-verification-buttons {
    padding: 0 24px 24px;
  }
  
  .age-verification-banner h2 {
    font-size: 12px;
  }
}


/* Trust Section Responsive Design */
@media (max-width: 768px) {
  .trust-section {
    padding: 3rem 0;
  }
  
  .trust-section .section-container {
    padding: 0 1rem;
  }
  
  .trust-cards-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    grid-template-rows: auto; /* Auto rows for stacking */
    gap: 1.5rem; /* Consistent spacing */
  }
  
  .trust-feature-card {
    min-height: 240px;
    padding: 1.25rem;
  }
  
  .trust-headline {
    font-size: 24px; /* 24px mobile as specified */
  }
  
  .trust-intro {
    font-size: 16px; /* 16px for mobile */
  }
  
  .trust-feature-icon-background {
    width: 50px; /* Proportionally scaled from 60px */
    height: 50px;
  }
  
  .trust-feature-icon {
    width: 24px; /* Proportionally scaled from 28px */
    height: 24px;
  }
  
  .trust-feature-title {
    font-size: 1rem; /* 16px for mobile */
  }
  
  .trust-feature-caption {
    font-size: 0.875rem; /* 14px for mobile */
  }
}

@media (max-width: 480px) {
  .trust-section .section-container {
    padding: 0 0.5rem;
  }
  
  .trust-feature-card {
    padding: 1rem;
    min-height: 220px;
  }
  
  .trust-feature-icon-background {
    width: 40px; /* Proportionally scaled from 60px */
    height: 40px;
  }
  
  .trust-feature-icon {
    width: 20px; /* Proportionally scaled from 28px */
    height: 20px;
  }
}

