:root {
  --navy: #062b55;
  --navy-2: #0d3e76;
  --red: #a90f16;
  --red-2: #d21c25;
  --blue-soft: #eaf2fb;
  --white: #ffffff;
  --text: #10243c;
  --muted: #63758d;
  --line: rgba(6, 43, 85, 0.14);
  --shadow: 0 24px 70px rgba(6, 43, 85, 0.15);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(234, 242, 251, 0.94), rgba(255, 255, 255, 0.96)),
    url("assets/img/bg-medical-grid.png") center / cover;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(210, 28, 37, 0.25), transparent 34%),
    linear-gradient(135deg, #062b55, #071b35);
  color: var(--white);
}

.section-form {
  background:
    linear-gradient(135deg, rgba(6, 43, 85, 0.92), rgba(9, 31, 58, 0.95)),
    url("assets/img/bg-wroclaw-panorama.jpg") center / cover;
  color: var(--white);
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 10%, rgba(169, 15, 22, 0.12), transparent 26%),
    radial-gradient(circle at 10% 20%, rgba(13, 62, 118, 0.08), transparent 26%);
  z-index: -1;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  max-height: 46px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a {
  font-size: 0.94rem;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--red);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

/* HERO */

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, 0.88) 48%, rgba(248, 251, 255, 0.35) 100%),
    url("assets/img/hero-wroclaw.jpg") bottom center / cover;
}

.hero-particles {
  position: absolute;
  right: -180px;
  top: 40px;
  width: 720px;
  opacity: 0.34;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.price-copy h2,
.form-copy h2,
.venue-copy h2 {
  margin: 0;
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #203a5a;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(169, 15, 22, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(169, 15, 22, 0.34);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-full {
  width: 100%;
}

.hero-trust {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
}

.hero-trust div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.hero-trust span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  padding: 24px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  border-radius: 32px;
}

.pulse-dot {
  position: absolute;
  top: 39%;
  right: 34%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(169, 15, 22, 0.55);
  animation: pulse 2s infinite;
}

.floating-card {
  position: absolute;
  padding: 16px 20px;
  border-radius: 20px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card-date {
  left: -18px;
  bottom: 12%;
}

.floating-card-place {
  right: -14px;
  top: 12%;
}

/* QUICK INFO */

.quick-info {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.info-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.info-card span,
.info-card strong {
  display: block;
}

.info-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
}

.info-card strong {
  margin-top: 8px;
  color: var(--navy);
}

/* BASIC SECTIONS */

.two-col,
.price-layout,
.form-layout,
.venue-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-copy h2,
.price-copy h2,
.form-copy h2,
.venue-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-form h2,
.section-form p {
  color: var(--white);
}

.section-heading p,
.section-copy p,
.price-copy p,
.form-copy p,
.venue-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-heading p,
.section-form .form-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.inline-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  font-weight: 900;
}

/* BENEFITS */

.visual-benefit {
  position: relative;
}

.visual-benefit > img {
  width: 330px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 24px 50px rgba(6, 43, 85, 0.14));
}

.benefits-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefits-grid article,
.audience-card,
.speaker-card,
.price-card,
.signup-form,
.contact-box,
.sponsors-box,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefits-grid article {
  padding: 26px;
}

.benefits-grid strong,
.benefits-grid span {
  display: block;
}

.benefits-grid strong {
  color: var(--navy);
  font-size: 1.15rem;
}

.benefits-grid span {
  margin-top: 8px;
  color: var(--muted);
}

/* AUDIENCE */

.audience-feature {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
  padding: 18px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.audience-feature img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
}

.audience-feature h3 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.1;
}

.audience-feature p {
  color: var(--muted);
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-card {
  padding: 26px;
}

.audience-card h3 {
  margin: 0;
  color: var(--navy);
}

.audience-card p {
  color: var(--muted);
}

/* TOPICS */

.topics-section {
  background: #ffffff;
}

.topics-jaw {
  position: absolute;
  right: -120px;
  top: 30px;
  width: 580px;
  opacity: 0.12;
  pointer-events: none;
}

.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.topic-pill {
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(6, 43, 85, 0.08);
}

.topics-photo {
  margin-top: 34px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.topics-photo img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

/* PROGRAM */

.dark-particles {
  position: absolute;
  right: -160px;
  top: 80px;
  width: 720px;
  opacity: 0.16;
  pointer-events: none;
}

.program-photo {
  margin-bottom: 30px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.program-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.program-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.program-day {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 26px;
  backdrop-filter: blur(12px);
}

.program-day-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.program-day-header span {
  color: #ffccd0;
  font-weight: 900;
  text-transform: uppercase;
}

.program-day-header strong {
  color: var(--white);
}

.timeline {
  margin-top: 20px;
}

.timeline-item {
  position: relative;
  padding: 18px 0 18px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 24px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red-2);
}

.timeline-item time {
  color: #ffccd0;
  font-weight: 900;
}

.timeline-item p {
  margin: 6px 0 4px;
  color: var(--white);
}

.timeline-item strong {
  color: rgba(255, 255, 255, 0.72);
}

.timeline-item.featured {
  padding-right: 14px;
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.06);
}

.center {
  text-align: center;
  margin-top: 36px;
}

/* WORKSHOPS */

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.workshop-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.workshop-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 22px;
}

.workshop-card h3 {
  margin: 8px 0;
  color: var(--navy);
}

.workshop-card p {
  color: var(--muted);
}

.workshop-card small,
.workshop-card strong {
  display: block;
}

.workshop-price {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  font-weight: 900;
}

.workshop-limited {
  border-color: rgba(169, 15, 22, 0.35);
}

.workshop-extra {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f4f8fd, #ffffff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.workshop-extra img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.workshop-extra h3 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.1;
}

.workshop-extra p {
  color: var(--muted);
}

/* SPEAKERS */

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.speaker-card {
  padding: 18px;
}

.speaker-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  margin-bottom: 16px;
  background: var(--blue-soft);
}

.speaker-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.speaker-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* VENUE */

.venue-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.venue-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.venue-details {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--blue-soft);
}

.venue-details strong {
  color: var(--navy);
}

.venue-details span {
  color: var(--muted);
  margin-bottom: 10px;
}

/* PRICE */

.price-section {
  background: linear-gradient(180deg, #ffffff, #eef5fd);
}

.price-line-art {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  opacity: 0.12;
  pointer-events: none;
}

.price-card {
  padding: 34px;
}

.badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.price-card h3 {
  margin: 24px 0 0;
  color: var(--navy);
}

.price {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
}

/* FORM */

.signup-form {
  padding: 30px;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.signup-form label,
.signup-form legend {
  display: block;
  color: var(--navy);
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  font: inherit;
  outline: none;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(13, 62, 118, 0.12);
}

.checkbox-group {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.checkbox-group label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-weight: 700;
}

.checkbox-group input,
.consent input {
  width: auto;
  margin-top: 5px;
}

.signup-form textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  text-align: center;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-box,
.sponsors-box {
  margin-top: 28px;
  padding: 24px;
  color: var(--text);
}

.contact-box strong,
.contact-box a {
  display: block;
}

.contact-box a {
  margin-top: 8px;
  color: var(--navy);
  font-weight: 900;
}

.sponsors-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sponsors-grid img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  padding: 10px;
  border-radius: 14px;
  background: #f7f9fc;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

details p {
  color: var(--muted);
}

/* FOOTER + STICKY CTA */

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: #061b35;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner a {
  display: block;
  text-align: right;
  color: var(--white);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(169, 15, 22, 0.36);
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(169, 15, 22, 0.55);
  }
  70% {
    box-shadow: 0 0 0 28px rgba(169, 15, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(169, 15, 22, 0);
  }
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .two-col,
  .price-layout,
  .form-layout,
  .program-layout,
  .venue-layout,
  .audience-feature,
  .workshop-extra {
    grid-template-columns: 1fr;
  }

  .quick-info-grid,
  .audience-grid,
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .venue-image img,
  .program-photo img {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero-trust,
  .quick-info-grid,
  .benefits-grid,
  .audience-grid,
  .workshops-grid,
  .speakers-grid,
  .form-grid,
  .sponsors-grid {
    grid-template-columns: 1fr;
  }

  .workshop-card {
    grid-template-columns: 1fr;
  }

  .workshop-card img {
    min-height: 210px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner a {
    text-align: left;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }

  .audience-feature img,
  .workshop-extra img,
  .venue-image img,
  .program-photo img {
    height: 260px;
  }
}

.info-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}

.section-title-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.section-title-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.section-title-icon .eyebrow {
  margin: 0;
}
/* FIX HERO — blokada nakładania elementów */
.hero-grid {
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}

.hero-content {
  max-width: 980px !important;
  position: relative !important;
  z-index: 5 !important;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem) !important;
  max-width: 980px !important;
}

.hero-visual {
  position: absolute !important;
  right: 8% !important;
  top: 18% !important;
  width: 360px !important;
  opacity: 0.22 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.hero-image-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.floating-card {
  display: none !important;
}

.hero-trust {
  position: relative !important;
  z-index: 6 !important;
}

@media (max-width: 900px) {
  .hero-visual {
    display: none !important;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem) !important;
  }
}
/* FIX MOBILE COLORS */
:root {
  color-scheme: light !important;
}

html,
body {
  background: #f8fbff !important;
  color: #10243c !important;
}

@media (max-width: 720px) {
  body {
    background: #f8fbff !important;
    color: #10243c !important;
  }

  .site-header,
  .main-nav,
  .section,
  .section-muted,
  .topics-section,
  .price-section {
    background-color: #f8fbff !important;
  }

  .section-dark {
    background:
      radial-gradient(circle at top right, rgba(210, 28, 37, 0.18), transparent 34%),
      linear-gradient(135deg, #062b55, #071b35) !important;
    color: #ffffff !important;
  }

  .section-form {
    background:
      linear-gradient(135deg, rgba(6, 43, 85, 0.92), rgba(9, 31, 58, 0.95)),
      url("assets/img/bg-wroclaw-panorama.jpg") center / cover !important;
    color: #ffffff !important;
  }

  h1, h2, h3, p, span, strong, a, label, summary {
    color: inherit;
  }

  .hero h1,
  .hero h2,
  .section-heading h2,
  .section-copy h2,
  .price-copy h2,
  .venue-copy h2 {
    color: #062b55 !important;
  }

  .hero h1 span,
  .eyebrow {
    color: #a90f16 !important;
  }

  .info-card,
  .audience-card,
  .speaker-card,
  .workshop-card,
  .price-card,
  .signup-form,
  .contact-box,
  details {
    background: #ffffff !important;
    color: #10243c !important;
  }
}