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

html, body {
  font-family: 'Libre Baskerville', serif;
  color: #2c2c2c;
  background-color: #f9f7f4;
  line-height: 1.6;
}

:root {
  --accent-brown: #8B6F47;
  --dark-brown: #5c4a37;
  --cream: #f9f7f4;
  --light-cream: #faf8f5;
  --gold-accent: #c9a961;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #e8e3dc;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-brown);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-brown);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

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

section {
  padding: 5rem 0;
  border-bottom: 1px solid #e8e3dc;
}

section:last-child {
  border-bottom: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--accent-brown);
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--dark-brown);
}

p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

a:hover {
  color: var(--dark-brown);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.hero h1 {
  color: white;
  font-size: 3.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  background-color: var(--accent-brown);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-brown);
  cursor: pointer;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
}

.btn:hover {
  background-color: var(--dark-brown);
  border-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 74, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-brown);
  border: 2px solid var(--accent-brown);
}

.btn-secondary:hover {
  background-color: var(--accent-brown);
  color: white;
}

.blog-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-link-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-brown);
}

.blog-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.blog-link-card h3 {
  margin-bottom: 1rem;
}

.blog-link-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.content-block {
  margin-bottom: 3rem;
}

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

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

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

.two-column-text {
  padding: 1rem;
}

.faq-section {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-brown);
}

.faq-item h4 {
  color: var(--accent-brown);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-light);
}

.disclaimer-block {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--accent-brown);
  margin-bottom: 2rem;
}

.disclaimer-block p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 2rem 0;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  background-color: #fafaf9;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-brown);
  background-color: white;
}

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

footer {
  background-color: var(--dark-brown);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

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

.footer-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold-accent);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--gold-accent);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f9f7f4;
  border-top: 1px solid #ddd;
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: none;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookie-banner button {
  padding: 0.6rem 1.5rem;
  background-color: var(--accent-brown);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.cookie-banner button:hover {
  background-color: var(--dark-brown);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.blog-card h3 {
  margin-bottom: 0.8rem;
}

.blog-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

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

.blog-article h1 {
  margin-bottom: 0.5rem;
  color: var(--accent-brown);
}

.article-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8e3dc;
}

.article-content {
  line-height: 1.8;
  color: var(--text-light);
}

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

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

.article-content p {
  margin-bottom: 1.2rem;
}

.article-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  margin: 2rem 0;
}

.cta-section {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(201, 169, 97, 0.08) 100%);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

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

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

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

  h2 {
    font-size: 1.6rem;
  }

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

  .hero {
    height: 350px;
  }

  .navbar {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

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

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

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

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

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 3rem 0;
  }

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