
:root {
  --color-primary-dark: #2C5E1A;
  --color-primary: #4A7C59;
  --color-primary-light: #8DAA91;
  --color-accent: #8B6B4C;
  --color-accent-light: #C17C53;
  --color-bg-main: #F9F6F0;
  --color-bg-secondary: #E6EFE9;
  --color-bg-content: #FCFCFA;
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-tertiary: #999999;
  --font-family: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-primary);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-top: 0;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

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

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

button, .button {
  background-color: var(--color-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

button:hover, .button:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
}

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

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


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

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 1rem auto 0;
}


.grid-x {
  margin-left: -1rem;
  margin-right: -1rem;
}

.cell {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(249, 246, 240, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  width: 180px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 2rem;
}

.main-nav a {
  color: var(--color-primary-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}


.hero {
  height: 80vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem;
  background-color: rgba(249, 246, 240, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-left: 8%;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}


.feature-card {
  background-color: var(--color-bg-content);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.feature-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.feature-text {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}


.testimonial {
  background-color: var(--color-bg-content);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.testimonial-content {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary-dark);
}


.contact-form {
  background-color: var(--color-bg-content);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.form-submit {
  width: 100%;
}


.site-footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav a:hover {
  color: white;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}


.success-story {
  background-color: var(--color-bg-content);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.success-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.success-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.success-metrics {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
}


.offer-card {
  background-color: var(--color-bg-content);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-accent);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.offer-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.offer-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.offer-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.offer-price {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.offer-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.offer-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}


.benefit-item {
  display: flex;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: white;
  font-size: 1.25rem;
}

.benefit-content h3 {
  margin-bottom: 0.5rem;
}


.contact-info-item {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1rem;
}

.contact-text {
  color: var(--color-text-secondary);
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg-content);
  padding: 1rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  margin-bottom: 1rem;
}

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

.cookie-settings {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.cookie-settings:hover {
  background-color: var(--color-primary);
  color: white;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--color-bg-content);
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal-title {
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-tertiary);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  margin: 0;
  font-size: 1.1rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 30px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--color-primary);
}

input:checked + .cookie-slider:before {
  transform: translateX(30px);
}

.cookie-category-description {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.cookie-modal-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}


.thanks-container {
  text-align: center;
  padding: 5rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thanks-text {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}


.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

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

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

.policy-content ul, 
.policy-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

.policy-date {
  margin-top: 3rem;
  color: var(--color-text-tertiary);
  font-style: italic;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}


@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--color-bg-main);
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 999;
  }
  
  .main-nav.show {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    height: auto;
    padding: 5rem 0;
  }
  
  .hero-content {
    margin-left: 0;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .benefit-item {
    flex-direction: column;
  }
  
  .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .header-inner {
    padding: 0.75rem 0;
  }
  
  .logo {
    width: 150px;
  }
  
  .cookie-modal-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-modal-footer button {
    width: 100%;
  }
}