:root {
  --accent-green: #6A9B6F;
  --light-cream: #FEFDFB;
  --soft-white: #FFFFFF;
  --light-gray: #F5F5F5;
  --medium-gray: #E8E8E8;
  --dark-text: #2C2C2C;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--soft-white);
  color: var(--dark-text);
  line-height: 1.6;
  font-size: 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--soft-white);
  border-bottom: 1px solid var(--medium-gray);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

.nav-menu a:hover {
  color: var(--accent-green);
}

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

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

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

.hero-block {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(106, 155, 111, 0.3);
  z-index: 1;
}

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

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

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

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: 0.3px;
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

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

.content-row.reverse {
  direction: rtl;
}

.content-row.reverse > * {
  direction: ltr;
}

.content-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.content-text p {
  margin-bottom: 1rem;
  text-align: justify;
  line-height: 1.8;
  color: var(--dark-text);
}

.content-image {
  text-align: center;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-section {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-white) 100%);
  padding: 3rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--accent-green);
  padding-left: 1.5rem;
}

.faq-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--dark-text);
  line-height: 1.7;
}

.cta-section {
  background-color: var(--light-gray);
  padding: 3rem;
  text-align: center;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.cta-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

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

.cta-button:hover {
  background-color: #5a8a5f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(106, 155, 111, 0.2);
}

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

.blog-card {
  background: var(--soft-white);
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-text);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-card-link {
  display: inline-block;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  color: #5a8a5f;
  margin-left: 0.3rem;
}

footer {
  background-color: var(--dark-text);
  color: var(--soft-white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--medium-gray);
}

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

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

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--soft-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
}

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

.page-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 2rem;
  text-align: center;
}

.disclaimer {
  background-color: var(--light-cream);
  border-left: 4px solid var(--accent-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius);
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.8;
}

.policy-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-text);
  text-align: justify;
}

.policy-text h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.policy-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-text);
}

.policy-text p {
  margin-bottom: 1rem;
}

.policy-text ul,
.policy-text ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-text li {
  margin-bottom: 0.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: var(--radius);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  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: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(106, 155, 111, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--accent-green);
  color: var(--soft-white);
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: #5a8a5f;
  box-shadow: 0 6px 16px rgba(106, 155, 111, 0.2);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-image {
  text-align: center;
  margin: 2rem 0;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-text);
  color: var(--soft-white);
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-banner-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookie-accept,
.cookie-decline {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--accent-green);
  color: var(--soft-white);
}

.cookie-accept:hover {
  background-color: #5a8a5f;
}

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

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  margin: 2rem 0;
}

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

  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  main {
    margin-top: 140px;
  }

  .hero-block {
    height: 300px;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .content-row,
  .content-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .cookie-banner-content {
    flex-direction: column;
    gap: 1rem;
  }

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

  .cookie-accept,
  .cookie-decline {
    width: 100%;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
