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

html, body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #2d3436;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #2d3436;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #2d3436;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2d3436;
}

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

a {
  color: #6B9EA0;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #A8CABA;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  border-bottom: 1px solid rgba(168, 202, 186, 0.2);
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

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

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #A8CABA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #6B9EA0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

nav a {
  color: #2d3436;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 0.3rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #A8CABA;
  transition: width 0.3s ease;
}

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

main {
  margin-top: 80px;
}

section {
  padding: 120px 0;
  margin: 0;
}

.section-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
}

.content-box {
  max-width: 1280px;
  margin: 0 auto;
}

.section-light {
  background-color: #f8f1e9;
}

.section-sage {
  background-color: #f0f5f3;
}

.section-teal {
  background-color: #f0f4f4;
}

.section-white {
  background-color: #ffffff;
}

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

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

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

.two-column img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 500px;
}

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

.card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(168, 202, 186, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.card h3 {
  color: #A8CABA;
  margin-bottom: 1rem;
}

.accordion {
  border: 1px solid rgba(168, 202, 186, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid rgba(168, 202, 186, 0.2);
}

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

.accordion-button {
  background-color: #ffffff;
  color: #2d3436;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #f8f1e9;
}

.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  color: #A8CABA;
  transition: transform 0.3s ease;
}

.accordion-button.active::after {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background-color: #fafaf8;
}

.accordion-content.show {
  display: block;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(168, 202, 186, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.blog-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
  color: #2d3436;
}

.blog-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #A8CABA;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(168, 202, 186, 0.4);
}

.btn-secondary {
  background-color: #6B9EA0;
}

.btn-secondary:hover {
  box-shadow: 0 6px 16px rgba(107, 158, 160, 0.4);
}

footer {
  background-color: #2d3436;
  color: #ffffff;
  padding: 60px 0 30px;
  margin-top: 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #A8CABA;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-family: 'Playfair Display', Georgia, serif;
}

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

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

.footer-section ul li a {
  color: #bdbdbd;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #A8CABA;
}

.footer-section p {
  font-size: 0.9rem;
  color: #bdbdbd;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 202, 186, 0.2);
  padding-top: 2rem;
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #bdbdbd;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2d3436;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(168, 202, 186, 0.3);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #A8CABA;
  box-shadow: 0 0 0 3px rgba(168, 202, 186, 0.1);
}

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

.disclaimer {
  background-color: #f0f5f3;
  border-left: 4px solid #A8CABA;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.disclaimer h4 {
  color: #2d3436;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.disclaimer p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.hero {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #f0f5f3;
  margin-bottom: 2rem;
}

.thank-you-container {
  text-align: center;
  padding: 120px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-container h1 {
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-weight: 600;
  color: #A8CABA;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: #666;
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d3436;
  color: #ffffff;
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex-grow: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-text a {
  color: #A8CABA;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #A8CABA;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background-color: #6B9EA0;
}

.cookie-btn-reject {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.article-image {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
}

.article-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #A8CABA;
}

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.full-bleed {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

@media (max-width: 768px) {
  header {
    padding: 1rem 0;
  }

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

  nav ul {
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 20px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  main {
    margin-top: 60px;
  }

  section {
    padding: 60px 0;
  }

  .section-container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

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

  .two-column.reverse {
    direction: ltr;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

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

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

  .cookie-btn {
    flex: 1;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .thank-you-container {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .card {
    padding: 1.5rem;
  }

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

  .hero {
    height: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }
}
