:root {
  --primary-lavender: #B19CD9;
  --accent-peach: #FFDAB9;
  --graphite: #5C6370;
  --linen: #FAF9F6;
  --white: #FFFFFF;
  --black: #1a1a1a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--graphite);
  background-color: var(--linen);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rounded Mplus 1c', 'Trebuchet MS', sans-serif;
  font-weight: 500;
  color: var(--graphite);
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

h2 {
  font-size: 2.7rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

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

a:hover {
  color: var(--accent-peach);
  text-decoration: underline;
}

em {
  font-style: italic;
  color: var(--primary-lavender);
}

strong {
  font-weight: 600;
  color: var(--graphite);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 2px solid var(--primary-lavender);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-lavender);
  font-family: 'Rounded Mplus 1c', 'Trebuchet MS', sans-serif;
  letter-spacing: 0.1em;
}

.navbar-brand:hover {
  color: var(--accent-peach);
}

.navbar-nav .nav-link {
  color: var(--graphite);
  margin: 0 1rem;
  position: relative;
  padding-bottom: 0.5rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-lavender);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-lavender);
}

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

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

.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 160px 0;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(177, 156, 217, 0.1) 0%, rgba(255, 218, 185, 0.1) 100%);
  overflow: hidden;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
  color: var(--primary-lavender);
}

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

.section-accent {
  background: linear-gradient(135deg, rgba(177, 156, 217, 0.08) 0%, rgba(255, 218, 185, 0.08) 100%);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.two-column img:hover {
  transform: scale(1.02);
}

.two-column-reverse {
  grid-template-columns: 1fr 1fr;
}

.two-column-reverse .image-wrapper:first-child {
  order: 2;
}

.two-column-reverse .content-wrapper:last-child {
  order: 1;
}

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

.card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(177, 156, 217, 0.15);
}

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

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-lavender);
}

.card-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  color: var(--primary-lavender);
  font-weight: 500;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-lavender);
  transition: all 0.3s ease;
}

.card-link:hover {
  color: var(--accent-peach);
  border-bottom-color: var(--accent-peach);
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-left: 4px solid var(--primary-lavender);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-lavender);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--graphite);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Rounded Mplus 1c', 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-lavender), var(--accent-peach));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(177, 156, 217, 0.3);
}

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--primary-lavender);
  border: 2px solid var(--primary-lavender);
}

.btn-ghost:hover {
  background-color: var(--primary-lavender);
  color: var(--white);
}

footer {
  background-color: var(--graphite);
  color: var(--linen);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: var(--primary-lavender);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

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

.footer-section a {
  color: var(--linen);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.educational-disclaimer {
  background: linear-gradient(135deg, rgba(177, 156, 217, 0.1) 0%, rgba(255, 218, 185, 0.1) 100%);
  border: 2px solid var(--primary-lavender);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  color: var(--graphite);
}

.educational-disclaimer h4 {
  color: var(--primary-lavender);
  margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--primary-lavender);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-peach);
  box-shadow: 0 0 0 3px rgba(255, 218, 185, 0.2);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 3px solid var(--primary-lavender);
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
  animation: slideUp 0.4s ease-out;
}

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

.cookie-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.cookie-banner button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: 'Rounded Mplus 1c', 'Trebuchet MS', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--primary-lavender);
  color: var(--white);
}

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

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

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

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

.cookie-learn:hover {
  background-color: var(--primary-lavender);
  color: var(--white);
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.closing-section {
  background: linear-gradient(135deg, rgba(177, 156, 217, 0.15) 0%, rgba(255, 218, 185, 0.15) 100%);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
}

.closing-section h2 {
  margin-bottom: 1.5rem;
}

.closing-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  color: var(--primary-lavender);
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  section {
    padding: 80px 0;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-banner button {
    flex: 1;
  }

  .navbar-nav {
    margin-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .hero-content {
    padding: 2rem;
    margin: 2rem;
  }

  body {
    font-size: 1rem;
  }
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    padding: 60px 0;
  }

  body {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-section {
    height: auto;
    min-height: 400px;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1.5rem;
    margin: 1rem;
  }
}
