/* 👉 Google Fonts: Poppins og Raleway inkl. bold + italic */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Raleway:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&display=swap');

/* 👉 Global font-styling */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #111d4a;
  font-size: 16px;
}

/* 👉 Overskrifter */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111d4a;
}

/* 👉 Bold text */
strong, b {
  font-weight: 700;
  font-family: inherit;
}

/* 👉 Kursiv text */
em, i {
  font-style: italic;
  font-family: inherit;
}

/* 👉 Understregninger */
u {
  text-decoration: underline;
  font-family: inherit;
}

/* 👉 Links */
a {
  font-weight: 500;
  text-decoration: none;
  color: #ae029b; /* juster hvis du vil bruge anden brandfarve */
}

a:hover {
  text-decoration: underline;
}

/* 👉 Knapper (general styling – tilpas efter behov) */
button, .elementor-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 👉 Blockquotes (hvis du bruger citater) */
blockquote {
  font-style: italic;
  font-weight: 400;
  color: #444;
  border-left: 4px solid #ae029b;
  padding-left: 16px;
  margin-left: 0;
}

/* 👉 Lister (ul og ol) */
ul, ol {
  margin-left: 1.25em;
  padding-left: 1em;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

/* 👉 Formularer – fx Mailchimp */
input, textarea, select {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.bootcamp-feature-box {
  background-color: #f5f0e6;
  border-radius: 16px;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: #111d4a;
  line-height: 1.6;
  max-width: 800px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.checkmark {
  font-size: 1.6em;
  color: #ae029b;
  line-height: 1;
  margin-right: 0.75rem;
  flex-shrink: 0;
  padding-top: 0.1em;
  transition: transform 0.3s ease;
}

.checkmark:hover {
  transform: scale(1.3);
}

.feature-text {
  flex: 1;
}

.feature-heading {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #111d4a;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .bootcamp-feature-box {
    font-size: 18px;
    padding: 1.5rem;
  }

  .checkmark {
    font-size: 1.4em;
    margin-right: 0.6rem;
  }

  .feature-heading {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }
}

