:root {
  --primary-green: #4A7043;
  --accent-orange: #E89F71;
  --accent-brown: #5C4033;
  --cream: #F9F5EB;
  --white: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --border-color: #E8E8E8;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  line-height: 1.74;
  color: var(--text-dark);
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  word-spacing: 0.1em;
  text-align: center;
}

h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.015em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

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

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.32s ease;
}

a:hover {
  color: var(--accent-orange);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

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

.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-green);
  cursor: pointer;
  transition: color 0.32s ease;
}

.logo:hover {
  color: var(--accent-orange);
}

.logo img {
  height: 50px;
  width: auto;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  transition: color 0.32s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.section {
  padding: 130px 40px;
  max-width: 1720px;
  margin: 0 auto;
}

.section-light {
  background-color: var(--cream);
}

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

.section-full-width {
  padding: 130px 0;
  max-width: 100%;
  margin: 0;
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroParallax 0.3s ease-out;
}

@keyframes heroParallax {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  background-color: rgba(255, 245, 235, 0.95);
  padding: 60px 80px;
  max-width: 800px;
  box-shadow: var(--shadow);
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 0;
}

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

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

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.content-box {
  padding: 40px;
  background-color: var(--white);
}

.content-text {
  line-height: 1.8;
  text-align: justify;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  padding: 30px;
  text-align: center;
  transition: all 0.32s ease;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-green);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 4px;
}

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

.card p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-green);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.comparison-table tr:hover {
  background-color: var(--cream);
}

.accordion {
  margin: 40px 0;
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 10px;
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--cream);
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
  transition: all 0.32s ease;
}

.accordion-header:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.accordion-header.active {
  background-color: var(--primary-green);
  color: var(--white);
}

.accordion-toggle {
  font-size: 20px;
  transition: transform 0.32s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, opacity 0.32s ease;
  opacity: 0;
  padding: 0 20px;
}

.accordion-content.active {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}

.accordion-content p {
  margin-bottom: 1rem;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-brown));
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 2px solid var(--primary-green);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.32s ease;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--accent-brown), var(--primary-green));
  box-shadow: var(--shadow-hover), inset 0 2px 4px rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cta-center {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}

footer {
  background-color: var(--accent-brown);
  color: var(--white);
  padding: 80px 40px;
  margin-top: 130px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-container {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-section h3 {
  color: var(--accent-orange);
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.32s ease;
  display: block;
  margin-bottom: 10px;
}

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

.footer-section p {
  margin-bottom: 1rem;
  font-size: 14px;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline;
  margin-bottom: 0;
}

.footer-divider {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  transition: border-color 0.32s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74, 112, 67, 0.1);
}

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

.form-disclaimer {
  background-color: var(--cream);
  padding: 20px;
  border-left: 4px solid var(--accent-orange);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  border-radius: 2px;
}

.form-submit {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 14px 40px;
  border: 2px solid var(--primary-green);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.32s ease;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
}

.form-submit:hover {
  background-color: var(--accent-brown);
  border-color: var(--accent-brown);
}

.disclaimer-box {
  background-color: var(--cream);
  border-left: 4px solid var(--accent-orange);
  padding: 30px;
  margin: 40px 0;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark);
}

.disclaimer-box h3 {
  color: var(--primary-green);
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 15px;
}

.message-box {
  background-color: var(--cream);
  border: 1px solid var(--accent-orange);
  padding: 40px;
  border-radius: 4px;
  text-align: center;
  margin: 80px 0;
}

.message-box h2 {
  color: var(--primary-green);
  margin-top: 0;
}

.message-box p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.message-box a {
  color: var(--primary-green);
  font-weight: 700;
}

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

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.32s ease;
  border-radius: 4px;
}

.blog-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

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

.blog-card-content {
  padding: 25px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card-link {
  color: var(--primary-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: color 0.32s ease;
}

.blog-card-link:hover {
  color: var(--accent-orange);
}

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

.article-header {
  text-align: center;
  margin-bottom: 60px;
}

.article-header h1 {
  margin-bottom: 20px;
}

.article-date {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin: 40px 0;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.article-body {
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.article-body h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.article-body p {
  text-align: justify;
  margin-bottom: 1.5rem;
}

.list-styled {
  margin: 20px 0;
  padding-left: 30px;
}

.list-styled li {
  margin-bottom: 15px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 20px 40px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-message a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 16px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.32s ease;
  font-family: 'Karla', sans-serif;
}

.cookie-btn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.cookie-btn.accept {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.cookie-btn.accept:hover {
  background-color: var(--accent-brown);
  border-color: var(--accent-brown);
}

@media (max-width: 1200px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  .section {
    padding: 100px 30px;
  }

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

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

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
    letter-spacing: 0.01em;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  header {
    height: 60px;
  }

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

  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 35px;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }

  main {
    margin-top: 60px;
  }

  .section {
    padding: 80px 20px;
  }

  .hero {
    height: 400px;
    margin-top: 60px;
  }

  .hero-content {
    padding: 40px 30px;
    max-width: 90%;
  }

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

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

  .grid-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }

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

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