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

:root {
  --taupe: #8D7A6B;
  --plum: #A0789A;
  --oat: #EDE4D9;
  --charcoal: #3A3A3A;
  --white: #FFFFFF;
}

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

h1 {
  font-family: 'Libre Bodoni', serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-family: 'Libre Bodoni', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid #E0D5CA;
  padding: 1.5rem 2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Libre Bodoni', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--taupe);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 3rem;
  align-items: center;
}

nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--plum);
}

nav a.active {
  color: var(--plum);
  border-bottom: 2px solid var(--plum);
  padding-bottom: 0.25rem;
}

main {
  margin-top: 100px;
  padding: 0;
}

.hero {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 58, 58, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 3rem 2rem;
  animation: fadeIn 0.8s ease-in-out;
}

.hero-content h1 {
  color: var(--white);
  font-size: 62px;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--white);
  font-size: 22px;
  font-weight: 300;
}

section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 170px 80px;
}

section.light-bg {
  background: linear-gradient(135deg, #F5EEE5 0%, #EDE4D9 100%);
}

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

section.dark-bg h2,
section.dark-bg h3 {
  color: var(--white);
}

section.dark-bg p {
  color: var(--white);
}

.section-intro {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

.two-column.reversed {
  direction: rtl;
}

.two-column.reversed > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(58, 58, 58, 0.1);
}

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

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(58, 58, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(160, 120, 154, 0.15);
}

.card h3 {
  color: var(--charcoal);
  margin-top: 0;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--plum);
}

.card-content {
  font-size: 16px;
  line-height: 1.6;
}

.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 1rem 0;
  margin: 2rem 0;
}

.carousel-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(58, 58, 58, 0.1);
}

.accordion {
  margin: 3rem 0;
}

.accordion-item {
  border: 1px solid #E0D5CA;
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--oat);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #E0D5CA;
}

.accordion-header h3 {
  margin: 0;
  font-size: 18px;
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background-color: var(--white);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 1.5rem;
}

.accordion-body p {
  margin: 0;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--plum);
  color: var(--plum);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(160, 120, 154, 0.3);
}

.cta-section {
  text-align: center;
  padding: 100px 40px;
}

.cta-section h2 {
  margin-bottom: 2rem;
}

footer {
  background-color: var(--charcoal);
  color: var(--white);
  padding: 60px 80px;
  margin-top: 100px;
  font-size: 16px;
  line-height: 1.8;
}

footer h3 {
  color: var(--oat);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

footer a {
  color: var(--oat);
}

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

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

.footer-contact {
  margin-bottom: 2rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-disclaimer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(237, 228, 217, 0.2);
  color: #B0A8A0;
  font-size: 14px;
  margin-top: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 3rem 0;
}

.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(58, 58, 58, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(160, 120, 154, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

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

.blog-card-date {
  font-size: 14px;
  color: var(--plum);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-top: 0;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.blog-card p {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.blog-card a {
  color: var(--plum);
  font-weight: 600;
  font-size: 16px;
}

.blog-article {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-article h1 {
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: 16px;
  color: var(--plum);
  margin-bottom: 2rem;
  font-weight: 600;
}

.blog-article img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(58, 58, 58, 0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E0D5CA;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(160, 120, 154, 0.1);
}

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

.form-disclaimer {
  background-color: var(--oat);
  padding: 1.5rem;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.contact-section {
  max-width: 700px;
  margin: 0 auto;
}

.disclaimer-box {
  background-color: var(--oat);
  padding: 2rem;
  border-left: 4px solid var(--plum);
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 16px;
  line-height: 1.8;
}

.message-box {
  background-color: var(--oat);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  margin: 3rem 0;
  font-size: 18px;
  font-weight: 500;
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out forwards;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  main {
    margin-top: 250px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  section {
    padding: 100px 2rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--charcoal);
  color: var(--white);
  padding: 2rem;
  border-top: 2px solid var(--plum);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(58, 58, 58, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-content {
  flex: 1;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

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

.cookie-accept:hover {
  background-color: #9A6B94;
}

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

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

.cookie-link {
  color: var(--oat);
  cursor: pointer;
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--plum);
}

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

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
