/* ----- Base & Reset ----- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background: #f7f6f3;
}

h1 {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1.2;
  color: #000
}

h2 {
  margin: 0 0 24px;
  font-size: 32px;
  line-height: 1.2;
}

h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

p {
  margin: 0 0 16px;
  font-size: 19px;
  line-height: 1.6;
}

ul,
ol {
  margin: 0 0 16px;
  padding-left: 1.1em;
  font-size: 19px;
  line-height: 1.6;
}

li {
  margin: 6px 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

button {
  margin-top: 28px;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  background: #fe5618;
  color: #ffffff;
  font-size: 19px;
  font-weight: bold;
  cursor: pointer;
}



/* ----- Site Header ----- */

.site-header {
  padding: 24px 28px;
  background: linear-gradient(135deg, #fe5618 0%, #c60567 45%, #510085 100%);
}

.site-header .logo {
  display: block;
  margin-left: auto;  /* right-align (remove if you want left aligned) */
  width: 150px;
  height: auto;
}



/* ----- Hero ----- */

.hero {
  padding: 36px 28px 80px;
  background: linear-gradient(135deg, #fe5618 0%, #c60567 45%, #510085 100%);
  color: #ffffff;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.hero .logo {
  display: block;
  margin-left: auto;
  margin-bottom: 28px;
  width: 200px;
  height: auto;
}

.hero .copy {
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 48px;
  line-height: 1.15;
  color:#fff
}

.hero h2 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: normal
}

@media (max-width: 720px) {
  .hero {
    padding: 28px 18px 56px;
  }

  .hero .logo {
    width: 160px;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h2 {
    font-size: 22px;
  }

  .hero button {
    width: 100%;
    max-width: 360px;
  }
}

/* ----- Regular text ----- */

section {
  padding: 48px 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

section + section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

section h2 {
  margin: 0 0 20px;
  font-size: 32px;
  line-height: 1.2;
}

section p {
  line-height: 1.6;
}

section p strong {
  font-weight: 700;
}

/* ----- CTA section ----- */

.cta {
  background: #ffffff;
  padding: 56px 28px;
  max-width: 760px;
  margin: 48px auto;
  text-align: center;

  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Ensure normal body sizing (inherits p styles already) */
.cta p {
  margin: 0 0 16px;
}


/* ----- Footer ----- */

footer {
  padding: 32px 28px;
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
