/* ==================================================
BASE
================================================== */
:root {
  --text: #2a2d2f;
  --bg: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

/* ==================================================
LAYOUT
================================================== */
.inner {
  width: 90%;
  max-width: 42rem;
  margin: 0 auto;
}

/* ==================================================
TYPE
================================================== */
h1,
h2 {
  line-height: 1.2;
  color: #000;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75em;
  text-align: center;
}

p {
  margin: 0 0 1em;
}

/* Lists */
ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.3em;
}

ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}

/* ==================================================
LINKS
================================================== */
a {
  color: #004f71;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* ==================================================
HEADER
================================================== */
header {
  background: #f3f1ed; /* subtle neutral */
  color: #000;
  /* padding-top: 2em; */
}

header .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* border-bottom: 4px solid #000; */
  padding-top: 1.5em;
}

/* Icon / card */
.header-mark {
  margin-bottom: 0.1em;
}

.header-mark img {
  width: 110px;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Header text */
header h1 {
  margin-top: 0;
  margin-bottom: 0.3em;
}

.header-sub {
  max-width: 36rem;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 1em
}

/* ==================================================
SECTIONS
================================================== */
.section {
  padding: 2.5em 0;
}

.section-light {
  background: #f7f7f7;
}

.section-bright {
  background: #eef3f6;
}

.section-dark {
  background: #2a2d2f;
  color: #fff;
}

.section-dark h2 {
  color: #fff;
}

/* ==================================================
BLOCKS
================================================== */
.columns {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.col {
  width: 100%;
}

.text {
  max-width: 42rem;
}

/* ==================================================
IMAGES
================================================== */
.image {
  margin-top: 2em;
  text-align: center;
}

.image img {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* ==================================================
LOGOS
================================================== */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-top: 2em;
}

.logos img {
  height: 60px;
  width: auto;
}

/* ==================================================
FAQ
================================================== */
.faq-list details {
  border-bottom: 1px solid #e5e5e5;
  padding: 0.75em 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 1.5em;
}

.faq-list summary:hover {
  opacity: 0.7;
}

/* Hide default marker */
.faq-list summary::-webkit-details-marker {
  display: none;
}

/* Custom toggle */
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  margin-top: 0.75em;
}

.faq-answer figure {
  margin: 1em 0;
}

.faq-answer img {
  max-width: 100%;
  height: auto;
}




/* ==================================================
CARD EXAMPLES
================================================== */

.examples {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}

.example img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}









/* ==================================================
FORM
================================================== */
.form {
  margin-top: 2em;
}

.formblock {
  max-width: none;
}

.formblock__submit {
  width: 100% !important;
  margin-left: 0 !important;
  text-align: left !important;
}

.formblock__submit input[type="submit"] {
  width: 100%;
  padding: 0.9em;

  background: #f4b400;   /* matches your card tone */
  color: #000;

  border: none;
  border-radius: 8px;

  font-weight: 600;      /* adds emphasis */
  letter-spacing: 0.02em;

  cursor: pointer;
}

.formblock__submit input[type="submit"]:hover {
  background: #e0a200;
}

/* ==================================================
FOOTER
================================================== */
footer {
  background: #000;
  color: #fff;
  padding: 2em 0;
  text-align: center;
}

/* ==================================================
DESKTOP
================================================== */
@media (min-width: 768px) {

  .section {
    padding: 3.5em 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
    text-align: left;
  }

  p {
    font-size: 1.05rem;
  }

  .header-mark img {
    width: 120px;
  }

  .columns {
    flex-direction: row;
    gap: 2em;
  }

  .columns .col {
    width: 48%;
  }





  .examples {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2em;
    }

    .example img {
      max-width: 260px;
    }


}
