* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F5F5DC;
  --sage-green: #8DA399;
  --soft-gold: #D4AF37;
  --text-dark: #2C2C2C;
  --text-light: #666;
  --white: #FFFFFF;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  hyphens: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  background-color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-link img {
  width: 50px;
  height: 50px;
}

.burger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  transition: color 0.3s ease;
}

.burger-menu:hover {
  color: var(--sage-green);
}

.burger-menu .fa-times {
  display: none;
}

.burger-menu .fa-bars {
  display: block;
}

.burger-menu.active .fa-bars {
  display: none;
}

.burger-menu.active .fa-times {
  display: block;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
  padding-top: 80px;
}

.main-nav.active {
  right: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.main-nav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: var(--cream);
  border-bottom-color: var(--sage-green);
  padding-left: 2rem;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sage-green) 100%);
  padding: 3rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.video-placeholder {
  width: 100%;
  max-width: 800px;
  height: 400px;
  background: var(--sage-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  color: var(--white);
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--sage-green);
  color: var(--white);
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--soft-gold);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--soft-gold);
}

.btn-gold:hover {
  background-color: var(--sage-green);
}

.section {
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--soft-gold);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-color: var(--sage-green);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product-price {
  font-size: 1.1rem;
  color: var(--soft-gold);
  font-weight: 600;
  margin-top: 0.5rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--white);
  border: 2px solid var(--sage-green);
  color: var(--sage-green);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--sage-green);
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--soft-gold);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: 0.3;
}

.testimonial-text {
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.process-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--soft-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.newsletter {
  background-color: var(--sage-green);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
}

.newsletter h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.newsletter p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  padding: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background-color: var(--soft-gold);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--cream);
  color: var(--text-dark);
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: normal;
}

.map-container {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 1rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--soft-gold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--cream);
  opacity: 0.9;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.content-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-section h2 {
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--sage-green);
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.content-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.thankyou-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(141, 163, 153, 0.1) 100%);
}

.thankyou-content {
  max-width: 600px;
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  margin-inline: auto;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background-color: var(--sage-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 300;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(141, 163, 153, 0.3);
}

.thankyou-content h1 {
  color: var(--sage-green);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.thankyou-message {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.thankyou-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thankyou-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.thankyou-buttons .btn {
  width: 100%;
  text-align: center;
}

@media (min-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .thankyou-content {
    padding: 3rem 2.5rem;
  }

  .thankyou-icon {
    width: 100px;
    height: 100px;
    font-size: 3.5rem;
  }

  .thankyou-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .burger-menu {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    box-shadow: none;
    padding-top: 0;
    right: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 1.5rem;
  }

  .main-nav li {
    border-bottom: none;
  }

  .main-nav a {
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
  }

  .main-nav a:hover {
    background-color: transparent;
    padding-left: 0.5rem;
    border-bottom-color: var(--sage-green);
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .thankyou-page {
    padding: 3rem 1rem;
  }

  .thankyou-content {
    padding: 4rem 3rem;
  }

  .thankyou-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .thankyou-buttons .btn {
    width: auto;
    min-width: 180px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input {
    flex: 1;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .section {
    padding: 5rem 2rem;
  }
}

