@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Nunito+Sans:wght@400;600;700&display=swap');

:root {
  --primary: #52AABC;
  --primary-dark: #3d8a9a;
  --primary-light: #7ec4d4;
  --dark: #1a3a42;
  --dark-alt: #0f2429;
  --light: #f5f0e8;
  --light-alt: #e8e0d4;
  --cream: #faf7f2;
  --text-dark: #1a2e33;
  --text-light: #f5f0e8;
  --accent: #c9a96e;
  --shadow: rgba(26, 58, 66, 0.15);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Art Nouveau decorative divider */
.nouveau-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.nouveau-divider::before,
.nouveau-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.nouveau-divider i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Disclaimer bar */
.disclaimer-bar {
  background: var(--dark-alt);
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10001;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 58, 66, 0.95);
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 36, 41, 0.98);
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-link img {
  height: 40px;
  width: auto;
}

/* Plain text navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--primary-light);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  margin: 6px 0;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-alt);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -5px 0 30px var(--shadow);
  }

  .main-nav.open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(82, 170, 188, 0.2);
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}

@media (max-width: 320px) {
  .main-nav { width: 100%; right: -100%; }
  .header-inner { padding: 0.5rem 0.75rem; }
}

/* Hero - full screen with overlay */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 66, 0.85) 0%,
    rgba(82, 170, 188, 0.55) 50%,
    rgba(15, 36, 41, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  color: var(--light);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ornament {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 1.5rem auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 170, 188, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--text-light);
  border: 2px solid var(--dark);
}

.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--light-alt);
}

.section-teal {
  background: var(--primary);
  color: var(--text-light);
}

.section-teal h2,
.section-teal h3 {
  color: var(--text-light);
}

.section-alt {
  background: var(--light);
  color: var(--text-dark);
}

/* Parallax section */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 66, 0.75);
}

.parallax-section .container {
  position: relative;
  z-index: 2;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Cards */
.card {
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 25px var(--shadow);
  transition: transform var(--transition);
  border: 1px solid rgba(82, 170, 188, 0.15);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(82, 170, 188, 0.3);
  color: var(--text-light);
}

.section-dark .card p {
  color: var(--light-alt);
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-dark .card-icon,
.section-teal .card-icon {
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.section-light .grid-3 .card h3,
.section-light .grid-3 .card p,
.section-alt .grid-3 .card h3,
.section-alt .grid-3 .card p,
.section-teal .grid-3 .card h3,
.section-teal .grid-3 .card p {
  color: var(--text-dark);
}

.section-dark .grid-3 .card h3 {
  color: var(--text-light);
}

.section-dark .grid-3 .card p {
  color: var(--light-alt);
}

/* Image blocks */
.img-block {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.img-block img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.img-block-frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
}

.img-block-frame img {
  border-radius: 8px;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(82, 170, 188, 0.2);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .feature-list i,
.section-teal .feature-list i {
  color: var(--accent);
}

/* Numbered steps */
.steps-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps-list li {
  counter-increment: step;
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  align-items: flex-start;
}

.steps-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(82, 170, 188, 0.25);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-dark .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

/* Events calendar */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 15px var(--shadow);
}

.section-dark .event-card {
  background: rgba(255, 255, 255, 0.06);
}

.event-date {
  text-align: center;
  min-width: 60px;
}

.event-date .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Health guidelines */
.guidelines-box {
  background: rgba(82, 170, 188, 0.1);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
}

.section-dark .guidelines-box {
  background: rgba(82, 170, 188, 0.15);
  border-color: var(--primary-light);
}

.guidelines-box h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.guidelines-box h3 i {
  color: var(--primary);
  font-size: 1.5rem;
}

.guidelines-box ul {
  padding-left: 1.25rem;
}

.guidelines-box li {
  margin-bottom: 0.5rem;
}

/* Contact form */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(82, 170, 188, 0.3);
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Contact info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 4px 25px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--dark-alt);
  color: var(--light-alt);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  color: var(--light-alt);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(82, 170, 188, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-alt);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-alt);
  color: var(--text-light);
  padding: 1.25rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--light-alt);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--cream);
  color: var(--text-dark);
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(82, 170, 188, 0.2);
}

.cookie-category label {
  font-weight: 600;
}

.cookie-category p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 0.25rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 1.25rem 4rem;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-content .updated {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Success page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--light);
}

.success-content {
  max-width: 550px;
}

.success-content i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-content h1 {
  margin-bottom: 1rem;
}

.success-content p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.section-dark .stat-item .stat-number,
.section-teal .stat-item .stat-number {
  color: var(--accent);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 320px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* Quote block */
.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(82, 170, 188, 0.08);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.section-dark .quote-block {
  background: rgba(82, 170, 188, 0.12);
  border-left-color: var(--accent);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--cream);
  transform: translateX(-5.5px);
}

.section-dark .timeline-item::before {
  border-color: var(--dark);
}

.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.section-dark .timeline-item h4 {
  color: var(--primary-light);
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

/* Educational / compliance notice */
.educational-notice {
  background: rgba(82, 170, 188, 0.12);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.educational-notice strong {
  color: var(--dark);
}

.section-dark .educational-notice {
  background: rgba(82, 170, 188, 0.15);
  border-color: var(--primary-light);
  color: var(--light-alt);
}

.section-dark .educational-notice strong {
  color: var(--text-light);
}

.footer-legal-note {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-legal-note a {
  color: var(--primary-light);
  text-decoration: underline;
}

.footer-contact-line {
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.footer-contact-line a {
  color: var(--light-alt);
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero-bg { background-attachment: scroll; }
  .parallax-section { background-attachment: scroll; }
  .img-block img { height: 250px; }
}

@media (max-width: 320px) {
  html { font-size: 14px; }
  section { padding: 2.5rem 0; }
  .btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
  .cookie-inner { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons .btn { flex: 1; text-align: center; }
}
