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

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  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: sticky;
  top: 0;
  z-index: 1020;
  background-color: #ffffff;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.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: 80px;
  gap: 1.5rem;
}

.header-logo {
  flex-shrink: 0;
}
.header-logo .logo-image {
  height: 54px;
  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-weight: 500;
  color: #1a2a55;
  transition: all 0.2s ease-in-out;
  border-radius: 0.25rem;
  text-decoration: none;
}
.header-nav .nav-link:hover, .header-nav .nav-link:focus {
  color: #1a2a55;
  text-decoration: underline;
  background-color: #f8f9fa;
}
.header-nav .nav-link:focus {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

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

.cta-button {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  cursor: pointer;
}
.cta-button.cta-login {
  color: #1a2a55;
  background-color: #ffffff;
  border-color: #1a2a55;
}
.cta-button.cta-login:hover, .cta-button.cta-login:focus {
  font-weight: 700;
  color: #1a2a55;
  background-color: #ffffff;
  border-color: #1a2a55;
}
.cta-button.cta-signup {
  color: #ffffff;
  background-color: #1a2a55;
  border-color: #1a2a55;
}
.cta-button.cta-signup:hover, .cta-button.cta-signup:focus {
  background-color: rgb(35.3459459459, 57.0972972973, 115.5540540541);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.cta-button:focus {
  outline: 2px solid #1a2a55;
  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: 60px;
  }
  .header-logo .logo-image {
    height: 32px;
  }
}
.main-content {
  flex: 1;
  min-height: calc(100vh - 80px - 200px);
}

.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: 6rem;
}

.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 {
  background-color: #1a2a55;
  color: #dee2e6;
  margin-top: auto;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-link {
  display: block;
  padding: 0.25rem 0.5rem;
  color: #dee2e6;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
  border-radius: 0.25rem;
  text-decoration: none;
}
.footer-link:hover, .footer-link:focus {
  color: #ffffff;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer-link:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.compliance-notice {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-content {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #dee2e6;
  margin: 0;
}
.compliance-content .compliance-first {
  margin-bottom: 0.25rem;
  text-align: justify;
  text-align-last: left;
  word-spacing: 0.1em;
}
.compliance-content .compliance-second {
  margin-bottom: 0;
  text-align: justify;
  text-align-last: left;
  word-spacing: 0.2em;
}
.compliance-content strong {
  color: #ffffff;
  font-weight: 700;
}

.copyright {
  text-align: center;
  padding-top: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  font-size: 10px;
  color: #ffffff;
  margin-bottom: 0.125rem;
  line-height: 1.3;
}
.copyright-text:last-child {
  margin-bottom: 0;
}

.legal-disclaimer {
  text-align: center;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
.legal-disclaimer p {
  font-size: 10px;
  color: #ced4da;
  margin-bottom: 0.125rem;
  line-height: 1.2;
  text-align: center;
}
.legal-disclaimer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .footer-container {
    padding: 1rem 1rem 0.5rem;
    max-width: 90%;
  }
  .footer-links {
    gap: 0.25rem 0.5rem;
  }
}
@media (max-width: 575px) {
  .footer-container {
    padding: 0.5rem 0.5rem 0.25rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
  }
  .compliance-notice {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .compliance-content {
    font-size: 0.7875rem;
  }
  .copyright {
    padding-top: 0.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .legal-disclaimer {
    padding-top: 0.25rem;
    margin-top: 0.25rem;
  }
}
.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 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 0.375rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@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: 1.5rem 2rem;
  border-bottom: 1px solid #e9ecef;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2a55;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #adb5bd;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.modal-close:hover, .modal-close:focus {
  color: #495057;
  background-color: #f8f9fa;
}
.modal-close:focus {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

.modal-body {
  padding: 2rem;
}

.tab-nav {
  display: flex;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.tab-button {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
}
.tab-button:hover {
  color: #1a2a55;
  background-color: #fafafa;
}
.tab-button.active {
  color: #1a2a55;
  border-bottom-color: #1a2a55;
}
.tab-button:focus {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.auth-form {
  max-width: 100%;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
.form-input:focus {
  outline: none;
  border-color: #1a2a55;
  box-shadow: 0 0 0 2px rgba(26, 42, 85, 0.1);
}
.form-input:invalid {
  border-color: #dc3545;
}

.form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #1a2a55;
  color: #ffffff;
  border: none;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-bottom: 1.5rem;
}
.form-submit:hover, .form-submit:focus {
  background-color: rgb(35.3459459459, 57.0972972973, 115.5540540541);
}
.form-submit:focus {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  min-height: 1.2em;
}

.form-message {
  padding: 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  text-align: center;
}
.form-message.error {
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border: 1px solid #dc3545;
}
.form-message.success {
  background-color: rgb(175.1304347826, 235.8695652174, 189);
  color: rgb(30.1449275362, 125.8550724638, 52);
  border: 1px solid #28a745;
}

@media (max-width: 575px) {
  .modal {
    padding: 1rem;
  }
  .modal-content {
    max-height: 95vh;
  }
  .modal-header {
    padding: 1rem 1.5rem;
  }
  .modal-body {
    padding: 1.5rem;
  }
  .tab-nav {
    margin-bottom: 1.5rem;
  }
  .tab-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

: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: #7f94b3; /* Soft steel-blue 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 {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: flex-start; /* Left align content */
  text-align: left; /* Left align text */
}

.hero-headline {
  font-size: 3.5rem; /* Slightly bigger */
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff; /* White text for contrast against blue background */
  margin-bottom: 1rem;
}

.hero-subheadline {
  font-size: 1.25rem; /* Smaller subheadline */
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff; /* White text for contrast */
  margin-bottom: 1.5rem;
}

.hero-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff; /* White text for contrast */
  margin-bottom: 2rem;
  text-align: justify; /* Justified text */
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center; /* Center align CTA elements */
  width: 100%; /* Full width to center within the text block */
}

.hero-cta-button {
  background-color: #dc3545; /* Red button as specified */
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: max-content; /* Match disclaimer text width */
  min-width: fit-content;
}

.hero-cta-button:hover,
.hero-cta-button:focus {
  background-color: #c82333; /* Darker red on hover */
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}

.hero-disclaimer {
  font-size: 11px; /* Specified font size */
  color: #c9c5c5; /* Light gray color as specified */
  font-style: italic;
  text-align: center;
}

.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 rgba(255, 255, 255, 0.2); /* Light border for blue background */
}

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

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

.feature-icon svg {
  width: 20px; /* Icon size 20-24px as specified */
  height: 20px;
}

.feature-title {
  font-size: 0.9375rem; /* 15px - reduced scale */
  font-weight: 600;
  color: #ffffff; /* White text for contrast */
  margin-bottom: 0.5rem;
}

.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: 2.75rem; /* Adjusted 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;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1.125rem;
  }
  
  .feature-item {
    padding: 1rem;
  }
}



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

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

.benefits-content {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits-headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2a55; /* Navy blue to match other sections */
  margin-bottom: 1rem;
}

.benefits-subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a2a55; /* Navy blue to match other sections */
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4b5563; /* Consistent text color used in other sections */
  max-width: 900px;
  margin: 0 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 */
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 280px; /* Consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #dc3545;
}

.benefit-icon {
  color: #dc3545;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon svg {
  width: 48px;
  height: 48px;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1a2a55; /* Navy blue to match other sections */
  margin-bottom: 1rem;
}

.benefit-caption {
  font-size: 1rem;
  line-height: 1.5;
  color: #4b5563; /* Consistent text color used in other sections */
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-caption {
  opacity: 1;
}

/* 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: 2rem;
  }
  
  .benefits-subheadline {
    font-size: 1.125rem;
  }
  
  .benefits-intro {
    font-size: 1rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
    min-height: 240px;
  }
  
  .benefit-title {
    font-size: 1.125rem;
  }
  
  .benefit-caption {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 3rem 0;
  }
  
  .benefits-content {
    margin-bottom: 2rem;
  }
  
  .benefit-card {
    padding: 1.25rem;
    min-height: 220px  }
}

/* Process Section Styles */
.process-section {
  padding: 4rem 0;
  background-color: #e8f2ff; /* New lighter, fresher background color */
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center the section while extending full width */
}

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

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2a55; /* Dark navy for better contrast on light background */
  margin-bottom: 1rem;
}

.process-subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a2a55; /* Dark navy for better contrast */
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1a2a55; /* Dark navy for better contrast */
  max-width: 900px;
  margin: 0 auto;
}/* Process Steps Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 2rem;
  margin-top: 3rem;
}

/* Modern Step Cards */
.process-step-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  min-height: 320px; /* Consistent card height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-step-card:focus-within {
  outline: 2px solid #1a2a55;
  outline-offset: 2px;
}

/* Step Badge - Capsule Style */
.step-badge {
  font-size: 12px;
  font-weight: 600;
  color: #1a2a55; /* Navy blue text */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 9999px; /* Pill shape */
  border: 1px solid #1a2a55; /* Navy blue outline */
  display: inline-block;
}

/* Icon Container and Background - Higher Specificity */
.process-section .step-icon-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-section .step-icon-background {
  width: 64px !important; /* 64px diameter minimum as specified */
  height: 64px !important;
  background-color: #185ddc !important; /* Solid blue background */
  border-radius: 50% !important; /* Perfect circle */
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease; /* Smooth transitions */
}

.process-section .process-step-card:hover .step-icon-background {
  transform: scale(1.1); /* Subtle scale-up on hover */
  box-shadow: 0 4px 20px rgba(24, 93, 220, 0.3); /* Soft blue glow */
}

.process-section .step-icon {
  width: 32px !important; /* Icon size within the circle */
  height: 32px !important;
  fill: #ffffff !important; /* White icons */
  stroke: none !important; /* Remove stroke for flat design */
}

/* Process Steps Grid */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3-column horizontal grid on desktop */
  gap: 2rem; /* Equal gutter width */
  margin-top: 3rem;
}
  
  .process-headline {
    font-size: 2rem;
  }
  
  .process-subheadline {
    font-size: 1.125rem;
  }
  
  .process-intro {
    font-size: 1rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }
  
  .step-title {
    font-size: 1.25rem;
  }
  
  .step-caption {
    font-size: 0.9rem;
  }
  
  .step-icon svg {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 3rem 0;
  }
  
  .process-content {
    margin-bottom: 2rem;
  }
  
  .process-step {
    padding: 1.5rem 1.25rem;
    min-height: 260px;
  }
  
  .step-number {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .step-icon svg {
    width: 48px;
    height: 48px;
  }
}


/* Typography */
.step-title {
  font-size: 20px; /* 18-20px as specified */
  font-weight: 700; /* Bold */
  color: #1a2a55; /* Navy blue text */
  margin-bottom: 1rem;
  line-height: 1.3;
}

.step-caption {
  font-size: 16px; /* 16px as specified */
  font-weight: 400; /* Normal weight */
  color: #1a2a55; /* Navy blue text */
  line-height: 1.5;
  max-width: 280px; /* Limit to max 2 lines */
  margin: 0 auto;
}

/* Process Section Responsive Design */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .process-step-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .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: 2rem 1.5rem;
  }
  
  .process-headline {
    font-size: 2rem;
  }
  
  .process-subheadline {
    font-size: 1.125rem;
  }
  
  .step-icon-background {
    width: 70px;
    height: 70px;
  }
  
  .step-icon {
    width: 48px;
    height: 48px;
  }
  
  .step-title {
    font-size: 18px;
  }
  
  .step-caption {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .process-section .section-container {
    padding: 0 0.5rem;
  }
  
  .process-step-card {
    padding: 1.5rem 1rem;
  }
}



/* Trust Section Styles - Aligned Columns Layout */
.trust-section {
  padding: 4rem 0;
  background-color: #ffffff; /* White background as specified */
}

.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-headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a2a55;
  margin-bottom: 1rem;
}

.trust-subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  color: #1a2a55;
  margin-bottom: 1.5rem;
}

.trust-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1a2a55;
  margin: 0;
}

/* 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: #F5FAFF; /* Light blue tint background */
  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-header-block .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2a55;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-header-block .section-subheading {
  font-size: 1.25rem;
  color: #1a2a55;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.contact-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

/* TWO-COLUMN LAYOUT - PROPER FLEXBOX STRUCTURE */
.contact-columns {
  display: flex;
  gap: 2.5rem; /* 40px gap between columns */
  align-items: stretch; /* Make columns equal height */
}

/* LEFT COLUMN - Support Methods */
.contact-support-column {
  flex: 1; /* Equal width with right column */
  max-width: 50%; /* 50% width on desktop */
  display: flex;
  flex-direction: column;
}

/* RIGHT COLUMN - Contact Form */
.contact-form-column {
  flex: 1; /* Equal width with left column */
  max-width: 50%; /* 50% width on desktop */
  display: flex;
  flex-direction: column;
}

/* Column Headings */
.column-heading {
  font-size: 1.75rem; /* 24-32px range */
  font-weight: 600;
  color: #1a2a55;
  margin-bottom: 2rem; /* 32px margin below heading */
  line-height: 1.3;
}

/* Support Card Styles */
.support-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem; /* 24px padding */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.2s ease;
  margin-bottom: 1.5rem; /* 24px vertical gap between cards */
}

.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: 48px;
  height: 48px;
  background-color: #f3f4f6;
  border-radius: 8px;
}

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

/* Support Content */
.support-content {
  flex: 1;
}

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

.support-details {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

/* Form Container Styling - Match Support Cards */
.form-container {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem; /* 24px padding to match cards */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1; /* Fill remaining space in column */
  min-height: 300px; /* Minimum height for form */
}

/* Elfsight Form Styling */
.contact-form-column .elfsight-app-370da93b-cb54-4ad9-8d44-df3eb57015e8 {
  min-height: 250px;
  height: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* 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-header-block .section-heading {
    font-size: 2rem;
  }
  
  .contact-header-block .section-subheading {
    font-size: 1.125rem;
  }
  
  /* MOBILE: Stack columns vertically */
  .contact-columns {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-support-column,
  .contact-form-column {
    max-width: 100%; /* Full width on mobile */
  }
  
  .column-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .support-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .form-container {
    padding: 1.25rem;
    min-height: 250px;
  }
}
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem; /* 24px internal padding to match cards */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex: 1; /* Fill available space in column */
  min-height: 400px; /* Minimum height for form */
}

/* Elfsight Form Styling */
.contact-form-column .elfsight-app-370da93b-cb54-4ad9-8d44-df3eb57015e8 {
  min-height: 350px; /* Minimum height for form content */
  height: 100%; /* Fill the available container height */
  background: transparent; /* Let container handle background */
  border: none; /* Remove border as container handles it */
  box-shadow: none; /* Remove shadow as container handles it */
  padding: 0; /* Remove padding as container handles it */
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-section .section-container {
    padding: 0 1rem;
  }
  
  .contact-header-block {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .contact-columns {
    flex-direction: column; /* Stack vertically on mobile */
    gap: 2rem; /* Reduced gap for mobile */
    min-height: auto; /* Auto height on mobile */
  }
  
  .column-heading {
    font-size: 1.25rem; /* Smaller heading on mobile */
    margin-bottom: 1rem; /* Reduced spacing on mobile */
  }
  
  .contact-support-column,
  .contact-form-column {
    min-height: auto; /* Auto height on mobile */
  }
  
  .form-container {
    min-height: 300px; /* Reduced minimum height on mobile */
    padding: 1.5rem; /* Reduced padding on mobile */
  }
  
  .support-card {
    padding: 1.5rem; /* Reduced padding on mobile */
    min-height: 100px; /* Reduced minimum height on mobile */
  }
}
  
  .contact-header-block .section-heading {
    font-size: 2rem;
  }
  
  .contact-header-block .section-subheading {
    font-size: 1.125rem;
  }
  
  /* Stack columns vertically on mobile */
  .contact-columns {
    flex-direction: column;
    gap: 2rem;
  }
  
  .support-card {
    padding: 1.25rem;
  }
  
  .support-icon {
    width: 40px;
    height: 40px;
  }
  
  .support-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 2rem 0;
  }
  
  .contact-header-block .section-heading {
    font-size: 1.75rem;
  }
  
  .contact-header-block .section-subheading {
    font-size: 1rem;
  }
  
  .support-card {
    padding: 1rem;
    gap: 0.75rem;
  }
}

