:root {
  --accent-green: #33691E;
  --dark-green: #1B5E20;
  --cream-bg: #FEFBF6;
  --soft-cream: #F9F6F0;
  --warm-gray: #6D6D6D;
  --light-gray: #E8E5DE;
  --text-dark: #2C2C2C;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

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

a:hover {
  color: var(--dark-green);
  transform: translateY(-1px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(254, 251, 246, 0.97);
  box-shadow: 0 2px 12px rgba(51, 105, 30, 0.08);
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(8px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--accent-green);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}

.logo:hover {
  transform: scale(1.03);
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: var(--soft-cream);
  color: var(--accent-green);
}

.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(to bottom, var(--soft-cream) 0%, var(--cream-bg) 100%);
  border-bottom: 1px solid var(--light-gray);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(51, 105, 30, 0.12);
  margin: 0 auto;
  display: block;
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.content-with-image {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}

.content-with-image.reverse {
  flex-direction: row-reverse;
}

.content-text {
  flex: 1;
}

.content-image {
  flex: 0 0 380px;
  max-width: 380px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(51, 105, 30, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(51, 105, 30, 0.15);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(51, 105, 30, 0.12);
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--warm-gray);
}

.cta-box {
  background: var(--soft-cream);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--light-gray);
  margin: 3rem 0;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--warm-gray);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--accent-green);
  color: white;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(51, 105, 30, 0.25);
  color: white;
}

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

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

.faq-item {
  background: white;
  padding: 1.8rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-green);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--accent-green);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

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

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

.contact-info {
  background: var(--soft-cream);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  margin-top: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info strong {
  color: var(--accent-green);
  min-width: 80px;
}

.disclaimer-box {
  background: #FFF9E6;
  border-left: 4px solid #F9A825;
  padding: 2rem;
  border-radius: 6px;
  margin: 3rem 0;
}

.disclaimer-box h3 {
  color: #F57C00;
  margin-bottom: 1rem;
}

.disclaimer-box p {
  color: #6D4C00;
  line-height: 1.7;
}

.footer {
  background: var(--accent-green);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: white;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: white;
  text-decoration: underline;
}

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

.footer-notice {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-notice p {
  font-size: 0.95rem;
  font-weight: 500;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 44, 44, 0.98);
  color: white;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
  backdrop-filter: blur(10px);
}

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

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

.cookie-banner-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-actions {
  flex-shrink: 0;
}

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

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .content-with-image {
    flex-direction: column;
  }
  
  .content-with-image.reverse {
    flex-direction: column;
  }
  
  .content-image {
    flex: 1;
    max-width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cta-box {
    padding: 2rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    justify-content: center;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
}
