/* ---------- Base Page Layout ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- Main Two-Column Section ---------- */
.main-container {
  display: flex;
  flex: 1;
  width: 100%;
}

/* Equal width columns */
.left-column,
.right-column {
  flex: 1 1 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ---------- Left Column ---------- */
.left-column {
  color: white;
  background: #1a51a1;
  text-align: left;
  padding-left: 10%;
  justify-content: center;
}

.hero-headlines h1 {
  font-size: 3rem;
  line-height: 1;
  color: #06a64f;
}

.commission {
  margin: 0;
  font-size: 1.25rem;
  text-align: left;
}

.commission strong {
  font-weight: 600;
}

.sections {
  margin-top: 2em;
}

h1, h2, h3 {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
}

p {
  text-align: left;
  font-weight: 300;
}

/* ---------- RIGHT COLUMN (Form Area) ---------- */
.right-column {
  position: relative;
  background-color: #ffffff;
  color: #1a51a1;

  /* FIX — no more vertical centering */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding-top: 40px; /* adjustable spacing */
}

.right-column form {
  width: 100%;
  max-width: 500px;
}

/* ---------- Buttons ---------- */
.btn {
  background: #06a64f;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: 900;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  width: 100%;
  margin-top: 24px;
}

.btn:hover {
  background: #058c43;
  transform: scale(1.02);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Three-Step Section ---------- */
.steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  width: 100%;
  max-width: 400px;
  margin-top: 0.5rem;
}

.steps div {
  display: flex;
  flex-direction: row;         
  align-items: center;         
  gap: 0.75rem;                 
  transition: transform 0.2s ease-in-out;
}

.steps img {
  height: 30px;
  width: 30px;
  flex-shrink: 0;                
}

.steps p {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* ---------- Thank You Page Layout ---------- */
.thank-you-page {
  position: relative;
  width: 100vw;
  height: 85vh;
  background-color: #1f3d96;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.thank-you-container {
  background-color: #fff;
  padding: 40px 30px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 2;
}

.thank-you-headline {
  color: #10b981;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.thank-you-message,
.redirect-note {
  font-size: 1rem;
  color: #333;
  text-align: justify;
}

.redirect-note {
  margin-top: 20px;
  text-align: center;
}

.redirect-note a {
  color: #1f3d96;
  text-decoration: underline;
}

/* ---------- Footer ---------- */
footer {
  background: #d4d4d4;
  color: #1a51a1;
  width: 100%;
  flex-shrink: 0;
  padding: 1rem;
  text-align: justify;
}

footer a {
  color: #1a51a1;
  text-decoration: none;
  font-weight: 500;
}

/* Expanded Legal Section */
.legal {
  font-size: 0.7rem;
  font-weight: 400;
  color: #6c6b6b;
  line-height: 1.3;
  text-align: left;
  padding: 0 5vw; 
  width: 100%; 
  box-sizing: border-box;
}

.copyright {
  text-align: center;
  font-weight: 400;
  font-size: 0.7rem;
}