:root {
  --teal-dark: #0a5f66;
  --teal: #0e8b90;
  --teal-light: #14a3a0;
  --yellow: #f4c430;
  --white: #ffffff;
  --ink: #0b2e30;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--teal);
  background-image:
    linear-gradient(180deg, rgba(6, 60, 64, 0.55) 0%, rgba(6, 60, 64, 0.75) 100%),
    url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-facts {
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-facts .date {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0 0 0.5rem;
}

.hero-facts .location {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.hero-facts a {
  color: var(--white);
  text-decoration: underline;
}

.cta {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.card h2 {
  color: var(--teal-dark);
  margin-top: 0;
  font-size: 1.4rem;
  border-bottom: 3px solid var(--yellow);
  display: inline-block;
  padding-bottom: 0.25rem;
}

.card p {
  line-height: 1.6;
}

.card ul {
  line-height: 1.7;
  padding-left: 1.25rem;
}

.intro {
  font-size: 1.1rem;
  margin: 0;
}

.email-block {
  text-align: center;
  margin: 1.25rem 0;
}

.email-link {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 1.05rem;
}

.highlight {
  font-weight: 700;
  color: var(--teal-dark);
  text-align: center;
  font-size: 1.05rem;
}

.fee {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 0 0 1rem;
}

.paypal {
  text-align: center;
  font-weight: 700;
  background: #eef7f7;
  border: 2px dashed var(--teal-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1.1rem;
}

.contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contacts li {
  padding: 0.25rem 0;
  font-weight: 600;
}

.disclaimer {
  background: rgba(255, 255, 255, 0.75);
}

.disclaimer p {
  font-size: 0.85rem;
  color: #444;
  margin: 0;
}

footer {
  text-align: center;
  color: var(--white);
  padding: 1.5rem;
  font-size: 0.9rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
  .card {
    padding: 1.25rem 1.25rem;
  }

  .hero {
    padding: 3rem 1rem 2rem;
  }
}
