:root {
  --prime-white: #FCFCFC;
  --prime-red: #C8102E;
  --charcoal: #333333;
  --lime-accent: #B5E61D;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--prime-white);
  color: var(--charcoal);
  line-height: 1.84;
}

body {
  padding-top: 80px;
}

h1 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--charcoal);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

p, li {
  font-size: 1.17rem;
  line-height: 1.84;
  margin-bottom: 1rem;
}

small, .microcopy {
  font-size: 0.88rem;
  color: var(--charcoal);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--prime-white);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-bottom: 3px solid var(--prime-red);
}

.header-container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--charcoal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--prime-red);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--prime-red);
}

.container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 6%;
}

.content-core {
  max-width: 1240px;
  margin: 0 auto;
}

.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal) 100%);
  color: var(--prime-white);
  padding: 3rem 6%;
}

.hero-content {
  max-width: 1240px;
  width: 100%;
}

.hero h1 {
  color: var(--prime-white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--prime-white);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-alt {
  background-color: #f9f9f9;
}

.accent-band {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 6%;
  background: linear-gradient(135deg, var(--prime-red), var(--lime-accent));
  color: var(--prime-white);
  text-align: center;
  margin: 120px 0;
}

.accent-band h2 {
  color: var(--prime-white);
  margin-bottom: 2rem;
}

.accent-band p {
  color: var(--prime-white);
  font-size: 1.3rem;
}

.card {
  background: var(--prime-white);
  border: 1px solid #e0e0e0;
  padding: 2rem;
  transition: all 0.35s ease-out;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
  border-color: var(--prime-red);
}

.card h3 {
  margin-top: 0;
  color: var(--prime-red);
}

.card a {
  color: var(--prime-red);
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.card a:hover {
  color: var(--charcoal);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--prime-red);
  color: var(--prime-white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn:hover {
  background-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-secondary {
  background-color: var(--lime-accent);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: var(--prime-white);
}

.disclaimer-box {
  background-color: #f0f0f0;
  border-left: 4px solid var(--prime-red);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--charcoal);
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

table th {
  background-color: var(--charcoal);
  color: var(--prime-white);
  padding: 1rem;
  text-align: left;
  font-weight: 900;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background-color: #f9f9f9;
}

footer {
  background-color: var(--charcoal);
  color: var(--prime-white);
  padding: 3rem 0;
  margin-top: 4rem;
}

footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

footer h3 {
  color: var(--prime-white);
  margin-top: 0;
}

footer a {
  color: var(--lime-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--prime-red);
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-bottom {
  background-color: #222;
  color: var(--prime-white);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.image-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.image-showcase img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-showcase img:hover {
  transform: scale(1.03);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--prime-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.faq-question {
  padding: 1.5rem;
  background-color: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--prime-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--prime-white);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-banner button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--prime-red);
  color: var(--prime-white);
}

.cookie-accept:hover {
  background-color: var(--lime-accent);
  color: var(--charcoal);
}

.cookie-reject {
  background-color: transparent;
  color: var(--prime-white);
  border: 1px solid var(--prime-white);
}

.cookie-reject:hover {
  background-color: var(--prime-white);
  color: var(--charcoal);
}

.cookie-learn {
  background-color: transparent;
  color: var(--lime-accent);
  border: 1px solid var(--lime-accent);
}

.cookie-learn:hover {
  background-color: var(--lime-accent);
  color: var(--charcoal);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.feature-split img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 300px;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

  .accent-band {
    margin: 80px 0;
    padding: 60px 6%;
  }

  .cookie-banner.show {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner p {
    margin-bottom: 1rem;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .cookie-banner button {
    width: 100%;
  }
}
