/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BODY */
body {
  text-align: center;
  background-color: #0f2a44;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
header {
  background-color: white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO */
.logo {
  height: 70px;
  width: auto;
}

/* =========================
   BRAND HEADING (MAIN TITLE)
========================= */
.brand-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  margin: 15px 0;
  text-align: center;
  text-transform: uppercase;
}

/* DEEP ROOTS */
.brand-heading .brand-name {
  color: white;
  font-weight: 700;
  text-shadow: 
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

/* FINANCIAL */
.brand-heading .brand-highlight {
  color: #c8102e;
  font-weight: 700;
  margin-left: 8px;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 60px 20px;
  flex: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* =========================
   CTA BUTTON
========================= */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #c8102e;
  color: white;
  border-radius: 5px;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: gold;
  color: black;
  box-shadow: 0 0 20px gold;
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.98);
}

/* =========================
   BENEFITS (TABLE STYLE)
========================= */
.benefits {
  padding: 60px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: disc; /* clean bullet */
  max-width: 600px;
  margin: 0 auto;
  padding-left: 20px;
  text-align: left;
  color: white;
}

.benefits-list li {
  font-size: 1.3rem;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* black bullets */
.benefits-list li::marker {
 color: white;
}

/* =========================
   FORM
========================= */
.form-container {
  display: flex;
  justify-content: center;
}

.signup-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  width: 320px;
  box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.signup-form h2 {
  margin-bottom: 20px;
}

.signup-form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background: #1c3b5a;
  color: white;
  transition: 0.3s;
}

.signup-form input:focus {
  outline: none;
  box-shadow: 0 0 10px #00c853;
}

.signup-form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #c8102e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-form button:hover {
  background-color: gold;
  color: black;
  box-shadow: 0 0 20px gold;
  transform: scale(1.05);
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: white;
  color: #0f2a44;
  padding: 40px;
}