@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700&family=Karla:wght@400;700&display=swap');

:root {
  --color-lavender-grey: #D9CDE5;
  --color-ivory: #FDF8F2;
  --color-sage: #A9C5B8;
  --color-charcoal: #3C4A5E;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-dark-grey: #2F2F2F;
  --color-light-grey: #F5F5F5;
  --radius: 8px;
}

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

html, body {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  line-height: 1.72;
  color: var(--color-charcoal);
  background-color: var(--color-white);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--color-charcoal);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

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

a {
  color: var(--color-sage);
  text-decoration: none;
  transition: all 0.28s ease;
}

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

button, .btn {
  font-family: 'Poppins', sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.28s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.btn-primary {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-charcoal);
  transform: scale(1.05);
}

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

.btn-secondary:hover {
  background-color: var(--color-sage);
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-sage);
  color: var(--color-sage);
}

.btn-outline:hover {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.nav-item > a:hover {
  background-color: var(--color-lavender-grey);
  color: var(--color-charcoal);
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-lavender-grey);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.28s ease;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-lavender-grey);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: var(--color-ivory);
  text-decoration: none;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-charcoal);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo:hover {
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 0;
  list-style: none;
}

footer {
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  padding: 90px 110px;
  margin-top: 150px;
}

.footer-container {
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}

.footer-section h3 {
  color: var(--color-ivory);
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--color-sage);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--color-ivory);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  margin-bottom: 0;
}

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

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

.container-wide {
  max-width: 1580px;
  margin: 0 auto;
  padding: 0 90px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  margin-bottom: 150px;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(217, 205, 229, 0.4), rgba(60, 74, 94, 0.6));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 110px;
}

.hero-content h1 {
  color: var(--color-white);
  max-width: 60%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--color-ivory);
  max-width: 50%;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.section {
  margin-bottom: 150px;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  margin-top: 0;
}

.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grid-50-50.reverse {
  direction: rtl;
}

.grid-50-50.reverse > * {
  direction: ltr;
}

.grid-70-30 {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 80px;
  align-items: center;
}

.grid-30-70 {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-lavender-grey);
  border-radius: var(--radius);
  padding: 30px;
  transition: all 0.28s ease;
}

.card:hover {
  border-color: var(--color-sage);
  box-shadow: 0 8px 24px rgba(169, 197, 184, 0.15);
}

.card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: var(--radius);
  display: block;
}

.card h3 {
  margin-top: 0;
}

.card-link {
  color: var(--color-sage);
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.card-link:hover {
  color: var(--color-charcoal);
  text-decoration: none;
}

.image-block {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.28s ease;
}

.image-block:hover img {
  transform: scale(1.05);
}

.text-block {
  padding: 20px;
}

.text-block h3 {
  margin-top: 0;
}

.badge {
  display: inline-block;
  background-color: var(--color-lavender-grey);
  color: var(--color-charcoal);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.accordion {
  border: 1px solid var(--color-lavender-grey);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 15px;
}

.accordion-item {
  border-bottom: 1px solid var(--color-lavender-grey);
}

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

.accordion-header {
  padding: 20px;
  cursor: pointer;
  background-color: var(--color-ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.28s ease;
  font-weight: 600;
  color: var(--color-charcoal);
}

.accordion-header:hover {
  background-color: var(--color-lavender-grey);
}

.accordion-header.active {
  background-color: var(--color-sage);
  color: var(--color-white);
}

.accordion-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: transform 0.28s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.28s ease, padding 0.28s ease;
  background-color: var(--color-white);
}

.accordion-content.active {
  max-height: 1000px;
  padding: 20px;
}

.accordion-content p {
  margin-bottom: 0;
}

form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-charcoal);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-lavender-grey);
  border-radius: var(--radius);
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--color-charcoal);
  transition: all 0.28s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(169, 197, 184, 0.1);
}

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

.form-disclaimer {
  background-color: var(--color-ivory);
  border-left: 4px solid var(--color-sage);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-sage), var(--color-charcoal));
  width: 0;
  z-index: 9999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-ivory);
  padding: 20px 30px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

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

.cookie-content {
  flex: 1;
}

.cookie-content p {
  margin: 0;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--color-sage);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--color-sage);
  color: var(--color-white);
}

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

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

.cookie-btn-reject:hover {
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.divider {
  height: 1px;
  background-color: var(--color-lavender-grey);
  margin: 60px 0;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  padding-top: 20px;
}

.breadcrumb a {
  color: var(--color-sage);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--color-charcoal);
  margin: 0 8px;
}

.emphasis-block {
  background-color: var(--color-lavender-grey);
  padding: 40px;
  border-radius: var(--radius);
  margin: 60px 0;
}

.emphasis-block h3 {
  margin-top: 0;
}

.list-numbered {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 20px;
}

.list-numbered li {
  margin-bottom: 15px;
  padding-left: 10px;
}

.cta-section {
  text-align: center;
  padding: 80px 0;
  margin-bottom: 80px;
}

.cta-section h2 {
  margin-top: 0;
}

.cta-section p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.thank-you-container h1 {
  margin-bottom: 20px;
}

.thank-you-container p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .header-container {
    padding: 0 20px;
    min-height: 70px;
  }

  .container,
  .container-wide {
    padding: 0 20px;
  }

  footer {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-overlay {
    padding: 0 20px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: 1.75rem;
  }

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

  .grid-50-50,
  .grid-70-30,
  .grid-30-70 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .grid-50-50.reverse {
    direction: ltr;
  }

  .grid-cols-3,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .hero-section {
    height: 400px;
    margin-bottom: 80px;
  }

  .section {
    margin-bottom: 80px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .nav {
    flex-direction: column;
    gap: 0;
  }

  .nav-item > a {
    padding: 0.5rem 1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .nav-item:hover .dropdown-menu {
    max-height: 300px;
  }

  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 16px;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  body {
    font-size: 16px;
  }

  .header-container {
    padding: 0 15px;
  }

  .hero-section {
    height: 300px;
    margin-bottom: 60px;
  }

  .hero-overlay {
    padding: 0 15px;
  }

  .container,
  .container-wide {
    padding: 0 15px;
  }

  footer {
    padding: 30px 15px;
  }

  .cookie-banner {
    padding: 15px;
  }

  .section {
    margin-bottom: 60px;
  }
}
