@font-face {
  font-family: "Inter";
  src: local("Inter"), local("Arial");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #1f2328;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #1b4b8a;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1b4b8a;
  outline-offset: 2px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background-color: #11151a;
  color: #fefefe;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fefefe;
  font-size: 0.95rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #ffffff;
}

.section.bg-workshop {
  background-image: url("https://images.pexels.com/photos/6870295/pexels-photo-6870295.jpeg");
  background-size: cover;
  background-position: center;
  color: #fefefe;
}

.section.bg-workshop .split-content {
  background-color: rgba(17, 21, 26, 0.75);
  padding: 24px;
  border-radius: 16px;
}

.section.bg-workshop .lead,
.section.bg-workshop h2 {
  color: #fefefe;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.split-media {
  flex: 1;
  background-color: #dfe4ea;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: #6a7784;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.35rem;
}

.lead {
  font-size: 1.1rem;
  color: #2e3338;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #1b4b8a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  background-color: #163a6c;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1b4b8a;
  color: #1b4b8a;
}

.btn-outline:hover {
  background-color: #e8eef6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.service-item span {
  font-weight: 600;
}

.service-item em {
  font-style: normal;
  color: #1b4b8a;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #f0f3f7;
  color: #314256;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e5e9f0;
}

.quote {
  font-style: italic;
  margin: 0;
}

.form-panel {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6de;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: #4d5661;
}

.inline-link {
  font-weight: 600;
}

.footer {
  background-color: #11151a;
  color: #d5dbe2;
  padding: 40px 0;
}

.footer a {
  color: #d5dbe2;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.85rem;
  color: #aeb8c2;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  background-color: #f2b705;
  color: #2a220a;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta a:hover {
  background-color: #e0a600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hero-tag {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tag span {
  background-color: #e6edf5;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.selection-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selection-btn {
  border: 1px solid #c7d2e3;
  background-color: #f7f9fc;
  padding: 12px 14px;
  border-radius: 12px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.selection-btn:hover {
  border-color: #1b4b8a;
  background-color: #e8eef6;
}

.selection-btn.active {
  border-color: #1b4b8a;
  background-color: #dfe8f5;
}

.legal-block {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
