/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A202C;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #4A7C59;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2D5138;
}

strong {
  font-weight: 600;
  color: #1A202C;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #2D3748;
  transition: color 0.3s ease;
  padding: 8px 0;
}

.main-nav a:hover {
  color: #4A7C59;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #4A7C59;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2D5138;
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 32px;
  color: #2D3748;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #4A7C59;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #2D3748;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #F5F1E8;
  color: #4A7C59;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.hero h1 {
  color: #1A202C;
  margin-bottom: 24px;
}

.subheadline {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin: 8px;
}

.btn-primary {
  background-color: #4A7C59;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.2);
}

.btn-primary:hover {
  background-color: #2D5138;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 124, 89, 0.3);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #4A7C59;
  border: 2px solid #4A7C59;
}

.btn-secondary:hover {
  background-color: #4A7C59;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cards and Grids */
.value-cards,
.service-grid,
.pricing-grid,
.collection-grid,
.tips-grid,
.options-grid,
.info-grid,
.contacts-grid,
.team-grid,
.stats-grid,
.product-grid,
.guarantee-grid,
.testimonial-grid,
.suggestions-grid,
.explore-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.value-card,
.service-card,
.pricing-card,
.collection-card,
.tip-card,
.option-card,
.info-item,
.contact-card,
.team-member,
.stat,
.product-card,
.guarantee-item,
.testimonial-card,
.suggestion-card,
.explore-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.pricing-card:hover,
.collection-card:hover,
.tip-card:hover,
.option-card:hover,
.product-card:hover,
.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 124, 89, 0.15);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

/* Featured Card */
.pricing-card.featured {
  border: 3px solid #4A7C59;
  transform: scale(1.02);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: #F08030;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(240, 128, 48, 0.3);
}

/* Price Display */
.price {
  font-size: 32px;
  font-weight: 700;
  color: #4A7C59;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Trust Elements */
.trust-badge,
.trust-element {
  text-align: center;
  padding: 16px 24px;
  background-color: #F5F1E8;
  border-radius: 8px;
  margin-top: 32px;
  font-weight: 600;
  color: #2D5138;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.trust-badges span {
  background-color: #F5F1E8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #2D5138;
  font-weight: 600;
}

/* Steps */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #4A7C59;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
  font-family: 'Montserrat', sans-serif;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background-color: #F5F1E8;
  border-left: 4px solid #4A7C59;
  color: #1A202C;
}

.testimonial-card p {
  font-style: italic;
  color: #2D3748;
  margin-bottom: 8px;
}

.author {
  font-weight: 600;
  color: #4A7C59;
  font-style: normal;
  margin-top: 8px;
}

.result {
  font-weight: 600;
  color: #F08030;
  font-style: normal;
  font-size: 14px;
}

/* Content Sections */
.content-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-top: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Filter Categories */
.filter-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #F5F1E8;
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.milestone {
  background-color: #4A7C59;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

/* Statistics */
.stat {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #F5F1E8 0%, #FFFFFF 100%);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #4A7C59;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4A5568;
  font-weight: 600;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

thead {
  background-color: #4A7C59;
  color: #FFFFFF;
}

th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

td {
  padding: 16px;
  border-bottom: 1px solid #E2E8F0;
  color: #2D3748;
}

tbody tr:hover {
  background-color: #F5F1E8;
}

/* FAQ */
.faq-item {
  background-color: #FFFFFF;
  border-left: 4px solid #4A7C59;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #4A7C59;
  margin-bottom: 12px;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.social-links p {
  font-size: 16px;
  color: #2D3748;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #4A7C59 0%, #2D5138 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 60px 0;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  color: #F5F1E8;
  font-size: 18px;
  margin-bottom: 32px;
}

/* Footer */
footer {
  background-color: #1A202C;
  color: #E2E8F0;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #CBD5E0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #CBD5E0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #4A7C59;
}

.footer-bottom {
  border-top: 1px solid #2D3748;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #A0AEC0;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A202C;
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent-banner.active {
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  margin-bottom: 8px;
  color: #E2E8F0;
  font-size: 14px;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background-color: #4A7C59;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #2D5138;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #4A5568;
}

.cookie-reject:hover {
  background-color: #4A5568;
}

.cookie-settings {
  background-color: transparent;
  color: #4A7C59;
  text-decoration: underline;
  border: none;
  padding: 10px;
}

.cookie-settings:hover {
  color: #2D5138;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  animation: slideIn 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #4A5568;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1A202C;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5F1E8;
  border-radius: 8px;
}

.cookie-category h4 {
  margin-bottom: 8px;
  color: #1A202C;
}

.cookie-category p {
  font-size: 14px;
  color: #4A5568;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #CBD5E0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #4A7C59;
}

.toggle-switch.disabled {
  background-color: #4A7C59;
  cursor: not-allowed;
  opacity: 0.7;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .value-card,
  .service-card,
  .pricing-card,
  .collection-card,
  .tip-card,
  .option-card,
  .team-member,
  .product-card,
  .guarantee-item,
  .suggestion-card,
  .explore-card {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .text-image-section {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    margin: 8px 0;
  }

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

  .cookie-consent-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  table {
    font-size: 14px;
  }

  th, td {
    padding: 12px 8px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .mobile-menu {
    width: 100%;
    right: -100%;
  }

  .stat-number {
    font-size: 36px;
  }

  .price {
    font-size: 24px;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Confirmation Content */
.confirmation-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  color: #4A7C59;
}

.legal-content h3 {
  margin-top: 24px;
  color: #2D5138;
}

/* Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.cookie-btn:focus {
  outline: 3px solid #4A7C59;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-modal {
    display: none;
  }
}