:root {
  --color-navy: #2F3E55;
  --color-mint: #C2E5D8;
  --color-linen: #FAF5EE;
  --color-gold: #D4A017;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-gray-light: #F5F5F5;
  --color-gray-dark: #333333;
}

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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700;800;900&display=swap');

html, body {
  font-family: 'Playfair Display', serif;
  color: var(--color-navy);
  background-color: var(--color-white);
  line-height: 1.6;
}

body {
  font-size: 1.2rem;
  line-height: 1.95;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4.375rem;
  font-weight: 900;
  letter-spacing: -1.1px;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.95;
}

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

a:hover {
  color: var(--color-gold);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 1);
}

.navbar {
  max-width: 1540px;
  margin: 0 auto;
  padding: 1.5rem calc(8vw) 1.5rem calc(6vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold), var(--color-mint));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

main {
  margin-top: 100px;
}

.container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 calc(8vw) 0 calc(6vw);
}

.section {
  padding: 150px 0;
}

.section-full-bleed {
  padding: 150px calc(8vw) 150px calc(6vw);
  width: 100%;
}

.section-gradient-linen-navy {
  background: linear-gradient(135deg, var(--color-linen) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.section-gradient-linen-navy a,
.section-gradient-linen-navy h1,
.section-gradient-linen-navy h2,
.section-gradient-linen-navy h3,
.section-gradient-linen-navy p {
  color: var(--color-white);
}

.section-gradient-linen-navy a:hover {
  color: var(--color-mint);
}

.section-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.section-navy a,
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy p {
  color: var(--color-white);
}

.section-navy a:hover {
  color: var(--color-gold);
}

.section-linen {
  background-color: var(--color-linen);
}

.section-mint {
  background-color: var(--color-mint);
}

.section-white {
  background-color: var(--color-white);
}

.grid-2-col {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 3rem;
  align-items: center;
}

.grid-2-col-reverse {
  grid-template-columns: 35% 65%;
}

.text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.highlight {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--color-mint);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 200px calc(8vw) 200px calc(6vw);
  text-align: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy) 100%);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

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

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

.card {
  background: var(--color-white);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
  border-color: var(--color-mint);
  box-shadow: 0 0 20px rgba(194, 229, 216, 0.4);
  transform: translateY(-5px) scale(1.03);
}

.card h3 {
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.card p {
  color: var(--color-gray-dark);
  font-size: 1rem;
  line-height: 1.6;
}

.btn {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  background: linear-gradient(135deg, var(--color-linen) 0%, var(--color-mint) 100%);
  color: var(--color-navy);
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-gold) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(212, 160, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 160, 23, 0);
  }
}

.btn-secondary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-gold);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

th {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--color-gray-light);
}

tr:hover {
  background: var(--color-linen);
}

footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 4rem calc(8vw) 2rem calc(6vw);
  margin-top: 100px;
}

footer a {
  color: var(--color-mint);
  transition: color 0.3s ease;
}

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

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

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-height: 150px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.cookie-btn {
  font-family: 'Raleway', sans-serif;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-btn-accept {
  background: var(--color-mint);
  color: var(--color-navy);
}

.cookie-btn-accept:hover {
  background: var(--color-gold);
}

.cookie-btn-reject {
  background: transparent;
  border: 2px solid var(--color-mint);
  color: var(--color-mint);
}

.cookie-btn-reject:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.cookie-btn-learn {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.cookie-btn-learn:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--color-navy);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--color-gray-light);
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--color-navy);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-mint);
  box-shadow: 0 0 0 3px rgba(194, 229, 216, 0.1);
}

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

.disclaimer {
  background: var(--color-linen);
  border-left: 4px solid var(--color-gold);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-gray-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1rem;
  cursor: pointer;
}

.faq-answer {
  color: var(--color-gray-dark);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .grid-2-col,
  .grid-2-col-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 100px 0;
  }

  .section-full-bleed {
    padding: 100px calc(6vw) 100px calc(4vw);
  }

  .hero {
    padding: 100px calc(6vw) 100px calc(4vw);
  }

  .container {
    padding: 0 calc(6vw) 0 calc(4vw);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .navbar {
    padding: 1rem calc(4vw) 1rem calc(4vw);
  }

  .navbar-nav {
    gap: 1rem;
  }

  .section {
    padding: 80px 0;
  }

  .section-full-bleed {
    padding: 80px calc(4vw) 80px calc(4vw);
  }

  .hero {
    padding: 80px calc(4vw) 80px calc(4vw);
  }

  .container {
    padding: 0 calc(4vw) 0 calc(4vw);
  }

  main {
    margin-top: 80px;
  }
}
