/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: "Poppins", sans-serif;
  /*background-color: #192438;*/
  background: url("hero1.png") no-repeat center center fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f0e6d2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 32px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* ← black background with 40% opacity */
  z-index: -1; /* stays behind all content */
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Navbar */
header {
  width: 100%;
  padding: 16px 32px;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
}

.header-title-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.header-title-logo img {
  width: 50px;
  height: 50px;
}

.header-title-logo::before {
  content: "Accountable Infrastructure";
  font-size: 16px;
  font-weight: 600;
  top: 10px;
  color: #ffffff;
  position: absolute;
  left: 60px;
  white-space: nowrap;
}

.header-title-logo::after {
  content: "Private Enterprise & Government Services";
  font-size: 13px;
  font-weight: 400;
  top: 30px;
  color: #9ca3af;
  position: absolute;
  left: 60px;
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px; /* Even spacing between links */
}

nav a {
  color: #e6e6fa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap; /* <== This keeps text in a single line */
}

nav a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  text-align: center;
  margin-top: 128px;
  max-width: 600px;
  padding: 0 16px;
}

main h1 {
  font-size: 63px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #e3c98b;
  margin-top: 32px;
}

main p {
  font-size: 15px;
  color: #dcdceb;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Button */
/*.button {
  display: inline-block;
  padding: 16px 80px;
  font-size: 16px;
  font-weight: 600;
  background-color: #e3c98b;
  color: #121a32;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  margin-top: 128px;
}

.button:hover {
  background-color: #cfb677;
  transform: scale(1.04);
}
          Original Button for Stripes
*/

/* New Button for 4 Payments, Stripes, Paypal, Bank Transfer and Zelle */
.button-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #f0e6d2;
  cursor: pointer;
  width: 80%;
  margin-top: 16px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.button-alt:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

.button-alt.paypal i {
  color: #009cde;
}
.button-alt.zelle i {
  color: #6d1ed4;
}
.button-alt.bank i {
  color: #e3c98b;
}

.button-alt.stripe i {
  color: #e3c98b;
}

/* ── Page layout ── */
.bank-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 680px;
  margin: 64px auto 80px;
  padding: 0 24px;
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Page layout ── */
.bank-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 560px;
  margin: 48px auto 80px;
  padding: 0 24px;
  box-sizing: border-box;
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Card ── */
.bank-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 40px 36px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* subtle gold top accent line */
.bank-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e3c98b, transparent);
  border-radius: 24px 24px 0 0;
}

/* ── Header ── */
.bank-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.bank-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(227, 201, 139, 0.2),
    rgba(227, 201, 139, 0.06)
  );
  border: 1px solid rgba(227, 201, 139, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #e3c98b;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(227, 201, 139, 0.1);
}

.bank-header-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: #e3c98b;
  line-height: 1.2;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.bank-header-text p {
  font-size: 13px;
  color: #9ca3af;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ── Divider ── */
.bank-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  margin: 0 0 24px;
}

/* ── Section label ── */
.fields-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e3c98b;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  opacity: 0.8;
}

/* ── Fields ── */
.bank-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.bank-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  transition:
    border-color 0.25s,
    background 0.25s;
  min-width: 0;
  box-sizing: border-box;
}

.bank-field:hover {
  border-color: rgba(227, 201, 139, 0.4);
  background: rgba(227, 201, 139, 0.04);
}

.bank-field-left {
  min-width: 0;
  flex: 1;
}

.bank-field-left label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.bank-field-left span {
  font-size: 14.5px;
  font-weight: 500;
  color: #f0e6d2;
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  display: block;
}

.bank-field-left small {
  display: block;
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: #9ca3af;
}

/* highlight numbers in gold */
.bank-field-left span.number {
  font-size: 16px;
  font-weight: 600;
  color: #e3c98b;
  letter-spacing: 0.04em;
}

.copy-btn {
  background: none;
  border: none;
  color: #e3c98b;
  cursor: pointer;
  font-size: 15px;
  padding: 7px 9px;
  border-radius: 9px;
  transition:
    background 0.2s,
    color 0.2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(227, 201, 139, 0.14);
}

/* Gcash */
.button-alt.gcash i {
  color: #1688ff;
}

/* ── Note box ── */
.bank-note {
  width: 100%;
  max-width: 560px;          /* same width as bank card */
  margin: 20px auto 0;       /* centers it */
  padding: 16px 18px;

  display: flex;
  align-items: flex-start;
  gap: 12px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-sizing: border-box;
}

.bank-note i{
  color:#e3c98b;
  font-size:16px;
  margin-top:2px;
  flex-shrink:0;
}

.bank-note p{
  margin:0;
  color:#d8dee9;
  font-size:13px;
  line-height:1.6;
}

.bank-note p a {
  color: #e3c98b;
  font-weight: 600;
  text-decoration: underline;
}

.bank-note a{
  color:#e3c98b;
  font-weight:600;
  text-decoration:none;
}

.bank-note a:hover{
  text-decoration:underline;
}
/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #9ca3af;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: #e3c98b;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1e2d45;
  border: 1px solid rgba(227, 201, 139, 0.35);
  color: #e3c98b;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
  z-index: 999;
  font-family: "Poppins", sans-serif;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .bank-section {
    margin: 28px auto 60px;
    padding: 0 16px;
  }

  .bank-card {
    padding: 28px 20px 28px;
  }

  .bank-header-text h1 {
    font-size: 17px;
  }

  .bank-field-left span {
    font-size: 13.5px;
  }

  .bank-field-left span.number {
    font-size: 15px;
  }
}
/* Paypal Transfer Page */
/* ── Page layout ── */
.pp-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  margin: 48px auto 80px;
  padding: 0 24px;
  animation: fadeUp 0.45s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Card ── */
.pp-card {
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.28);
}

/* ── PayPal logo area ── */
.pp-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.pp-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.pp-logo .pp-pay {
  font-size: 28px;
  font-weight: 800;
  color: #003087;
  font-family: "Helvetica Neue", sans-serif;
  letter-spacing: -0.5px;
}

.pp-logo .pp-pal {
  font-size: 28px;
  font-weight: 800;
  color: #009cde;
  font-family: "Helvetica Neue", sans-serif;
  letter-spacing: -0.5px;
}

.pp-logo i {
  font-size: 30px;
  color: #009cde;
}

.pp-logo-area h2 {
  font-size: 17px;
  font-weight: 600;
  color: #2c2e2f;
  margin-bottom: 4px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.pp-logo-area p {
  font-size: 13px;
  color: #6c7378;
  text-align: center;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ── Divider ── */
.pp-divider {
  height: 1px;
  background: #e8ecef;
  margin: 24px 0;
}

/* ── Email field ── */
.pp-email-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6c7378;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.pp-email-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f5f7fa;
  border: 1.5px solid #e0e6ed;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 28px;
  transition: border-color 0.2s;
  min-width: 0;
  overflow: hidden;
}

.pp-email-box:hover {
  border-color: #009cde;
}

.pp-email-box span {
  font-size: 13.5px;
  font-weight: 600;
  color: #003087;
  font-family: "Poppins", sans-serif;
  word-break: break-all;
  min-width: 0;
  flex: 1;
}

.pp-copy-btn {
  background: none;
  border: none;
  color: #009cde;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.pp-copy-btn:hover {
  background: rgba(0, 156, 222, 0.1);
}

/* ── Steps label ── */
.pp-steps-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6c7378;
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
}

/* ── Steps ── */
.pp-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pp-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: #f5f7fa;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  transition:
    border-color 0.2s,
    background 0.2s;
  min-width: 0;
}

.pp-step:hover {
  background: #eef6fc;
  border-color: #b3dff2;
}

.pp-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #009cde;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: "Poppins", sans-serif;
}

.pp-step p {
  font-size: 13.5px;
  color: #3d4547;
  line-height: 1.55;
  margin: 0;
  font-family: "Poppins", sans-serif;
  min-width: 0;
  word-break: break-word;
  flex: 1;
}

.pp-step p strong {
  color: #003087;
  font-weight: 600;
}

/* ── Note box ── */
.pp-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff8e7;
  border: 1px solid #f5d87a;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 28px;
}

.pp-note i {
  color: #f0a500;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.pp-note p {
  font-size: 13px;
  color: #5a4a00;
  line-height: 1.6;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.pp-note p a {
  color: #003087;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Back link ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #009cde;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: #003087;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #003087;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
  z-index: 999;
  font-family: "Poppins", sans-serif;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .pp-section {
    margin: 28px auto 60px;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
  }

  .pp-card {
    padding: 24px 18px 24px;
    width: 100%;
    box-sizing: border-box;
  }

  .pp-logo-area h2 {
    font-size: 15px;
  }

  .pp-email-box span {
    font-size: 12px;
  }

  .pp-step p {
    font-size: 13px;
  }
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 128px;
}
.footer {
  width: 100%;
  padding: 16px 32px;
  margin-top: auto;
}

/* Make sure this is below .footer-container to override spacing if needed */
.footer-title-logo img {
  width: 50px;
  height: 50px;
}

.footer-title-logo {
  position: relative;
  display: flex;
  align-items: center;
}

/* Simulate ::before and ::after from header */
.footer-title-logo::before {
  content: "Accountable Infrastructure";
  font-size: 16px;
  font-weight: 600;
  top: 10px;
  color: #ffffff;
  position: absolute;
  left: 60px;
  white-space: nowrap;
}
.footer-title-logo::after {
  content: "Private Enterprise & Government Services";
  font-size: 13px;
  font-weight: 400;
  top: 30px;
  color: #9ca3af;
  position: absolute;
  left: 60px;
  white-space: nowrap;
}
.footer-bottom {
  font-size: 13px;
  color: #cbd5e1;
  margin-top: 16px;
}

.footer-right a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  margin-right: 20px;
}

.footer-right a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  /* Base */
  body {
    padding: 16px;
  }

  /* Navbar */
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  nav a {
    margin-left: 0;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .header-title-logo img {
    width: 40px;
    height: 40px;
  }

  .header-title-logo::before {
    font-size: 14px;
    top: 0;
    left: 50px;
  }

  .header-title-logo::after {
    font-size: 12px;
    top: 18px;
    left: 50px;
  }

  /* Main Content */
  main h1 {
    font-size: 40px;
  }

  .button {
    width: 72%;
    padding: 16px;
    font-size: 16px;
    margin-top: 64px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }

  .footer-title-logo {
    margin-bottom: 8px;
  }

  .footer-bottom {
    margin-left: 60px; /* Aligns it with the start of "Accountable Infrastructure" */
  }

  .footer-right {
    align-self: flex-start;
  }

  .footer-right a {
    font-size: 16px;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-bottom {
  margin-left: 0; /* remove the 60px that was causing misalignment */
}

/* Hamburger styles */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* ===== Base Styles ===== */
.hamburger {
  background: none;
  border: none;
  padding: 0;
  font-size: 28px; /* Size of the icon */
  color: white; /* Adjust based on your navbar background */
  cursor: pointer;
  display: none; /* hide by default (shown in mobile via media query) */
  align-items: center;
  justify-content: center;
}

.hamburger i {
  pointer-events: none;
}

/* Close button hidden by default */
.close-btn {
  display: none;
}

/* Pay Now button icon spacing */
.button i {
  margin-left: 8px;
}

/* ===== Desktop Navigation ===== */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  nav {
    display: flex !important;
    gap: 32px;
  }

  nav a {
    font-size: 16px;
    color: white;
    text-decoration: none;
  }
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    position: fixed;
    inset: 0; /* shorthand for top, right, bottom, left = 0 */
    background: #ffffff;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  nav.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  nav a {
    margin: 12px 0;
    font-size: 24px;
    color: #000000;
    text-decoration: none;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    background: none;
    border: 0;
    cursor: pointer;
    line-height: 1;
    color: #000000;
  }

  .nav-container {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  body.no-scroll {
    overflow: hidden;
  }
}

/* === Payment Section with Hero Image === */
.payment-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  width: 100%;
  margin: 128px auto 64px;
  padding: 0 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 0px;
}

.payment-left {
  flex: 1 1 400px;
  text-align: left;
}

.payment-left h1 {
  font-size: 56px;
  color: #e3c98b;
  margin-bottom: 24px;
}

.payment-left p {
  font-size: 16px;
  color: #dcdceb;
  margin-bottom: 32px;
  line-height: 1.6;
}

.payment-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin-left: 180px; /* <-- Added this */
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.overlay-image {
  position: absolute;
  bottom: -48px;
  right: -120px;
  width: 60%;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .payment-section {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 0;
  }

  .payment-left {
    text-align: center;
  }

  .payment-left h1 {
    font-size: 40px;
  }

  .payment-right {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-image {
    max-width: 260px;
    margin-left: 0;
  }

  .overlay-image {
    bottom: -12px;
    right: -12px;
    width: 55%;
  }
}

@media (max-width: 430px) {
  /* iPhone 14 Pro Max-specific fixes */
  .payment-section {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 0 16px;
    margin-bottom: 0;
  }

  .payment-left {
    text-align: center;
  }

  .payment-left h1 {
    font-size: 40px;
  }

  .payment-right {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-image {
    max-width: 260px;
    margin-left: 0;
  }

  .overlay-image {
    bottom: -12px;
    right: -12px;
    width: 55%;
  }
}
