:root {
  --charcoal: #3C444C;
  --aqua: #88D4E2;
  --cream: #FDFAF3;
  --terracotta: #A66F5C;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  line-height: 1.92;
  color: var(--charcoal);
  background-color: var(--cream);
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

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

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

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(253, 250, 243, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

.logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--terracotta);
  transition: width 0.3s ease;
}

nav a:hover:after {
  width: 100%;
}

.container {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 7vw 0 7vw;
}

.section {
  padding: 150px 0;
}

.section.full-bleed {
  padding: 150px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: 7vw;
  padding-right: 9vw;
}

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

.section.gradient-cream-charcoal h1,
.section.gradient-cream-charcoal h2,
.section.gradient-cream-charcoal h3,
.section.gradient-cream-charcoal p {
  color: var(--cream);
}

.section.gradient-cream-charcoal .strong-aqua {
  color: var(--aqua);
}

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

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

@media (max-width: 768px) {
  .grid-2col,
  .grid-2col.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .container,
  .section.full-bleed {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }
}

button,
.btn {
  background: linear-gradient(135deg, var(--cream) 0%, var(--aqua) 100%);
  color: var(--charcoal);
  border: none;
  padding: 0.75rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
}

button:hover,
.btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(136, 212, 226, 0.3);
}

.card {
  background-color: white;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--aqua);
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(136, 212, 226, 0.2);
}

.card h3 {
  margin-top: 0;
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

footer {
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 4rem 7vw;
  margin-top: 100px;
}

.footer-container {
  max-width: 1580px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

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

.footer-section a {
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--aqua);
}

.footer-divider {
  border-top: 1px solid rgba(136, 212, 226, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.educational-notice {
  background-color: rgba(136, 212, 226, 0.1);
  border-left: 4px solid var(--aqua);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.educational-notice strong {
  color: var(--aqua);
}

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

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

.slide-up {
  animation: slideUp 0.8s ease-out;
}

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

.disclaimer {
  background-color: var(--cream);
  border: 1px solid #d0d0d0;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
}

input,
textarea {
  padding: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 8px rgba(136, 212, 226, 0.3);
}

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

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

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

.faq-item h3 {
  margin-top: 0;
  color: var(--aqua);
}

.faq-item p {
  margin-bottom: 0;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hero-image {
    height: 250px;
  }
}

.horizontal-strip {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
}

.horizontal-strip img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.blog-card {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card h3 {
  margin-top: 0;
}

.blog-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.read-more {
  color: var(--aqua);
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--terracotta);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 2rem;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-text {
  flex: 1;
}

.cookie-text a {
  color: var(--aqua);
}

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

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

.cookie-btn-accept {
  background-color: var(--aqua);
  color: var(--charcoal);
}

.cookie-btn-accept:hover {
  background-color: var(--aqua);
  opacity: 0.9;
}

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

.cookie-btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}
