html, body {
  margin: 0 !important;
  padding: 0 !important;
  background-color: #ffffff !important;
  font-family: Arial, Helvetica, sans-serif;
}

/* SFMC layout override */
.layout-canvas-a {
  background-color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

.layout-canvas-a > .header,
.layout-canvas-a > .section,
.layout-canvas-a > .footer {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.layout-canvas-a > .section > .columns {
  width: 100%;
  box-sizing: border-box;
}

/* =========================
   GENERAL LAYOUT
========================= */
.page-wrapper {
  width: 100%;
  text-align: center;
}

.content-container,
.main-container {
  max-width: 650px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
  line-height: 1.6;
  color: #333;
}

/* =========================
   TYPOGRAPHY
========================= */
.page-title {
  color: #00a9e5;
  margin-bottom: 30px;
  text-align: center;
}

.main-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
  color: #00a9e5;
}

/* =========================
   LISTS
========================= */
.main-list,
.content-list {
  font-size: 16px;
  padding-left: 25px;
  margin-bottom: 25px;
}

.main-list li,
.content-list li {
  margin-bottom: 15px;
}

/* =========================
   LINKS
========================= */
.link-red {
  color: #00a9e5;
  text-decoration: underline;
}

.info-box a {
  color: #00a9e5;
}

/* =========================
   BOXES
========================= */
.highlight-box,
.info-box {
  background: #f7f7f7;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  margin-top: 25px;
}

/* =========================
   FORM STYLES
========================= */
.form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

h2 {
  text-align: center;
  color: #00a9e5 !important;
}

label {
  font-weight: bold;
}

input[type=text],
input[type=number],
input[type=tel],
input[type=file],
input[type=email] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  width: 100%;
  background-color: #00a9e5;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #0095cc;
}

.consent {
  font-size: 14px;
  margin-bottom: 20px;
}

/* =========================
   SUCCESS BOX
========================= */
.success-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  margin: 40px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
/* =========================
   IMAGE HANDLING (FINAL)
========================= */

/* Default image behavior */
img {
  width: 100%;
  height: auto;
  display: block;
}

/* Image 2 specific (711px desktop) */
.image-two {
  max-width: 711px;
  margin: 0 auto;
}

/* Desktop vs Mobile visibility */
.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* =========================
   RESPONSIVE
========================= */
@media only screen and (max-width: 767px) {

  .mobile-hidden {
    display: none !important;
  }

  .responsive-td {
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
  }

  .content-container,
  .main-container {
    padding: 0 15px;
  }

  .form-container {
    padding: 20px;
  }

  /* Switch images */
  .desktop-banner {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
  }

  /* Prevent oversized images */
  .image-two {
    max-width: 95%;
  }
}