* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

:root {
  --forest-green: #4A7C59;
  --sage-green: #8B9D83;
  --moss-green: #6B8E23;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --light-gray: #E8E8E8;
  --medium-gray: #A0A0A0;
  --warm-brown: #8B7355;
  --light-brown: #C4A57B;
  --text-dark: #3D3D3D;
  --shadow: rgba(74, 124, 89, 0.15);
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px var(--shadow);
  width: 100%;
}

nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-brown);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

.hero {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
  width: 100%;
  max-width: 800px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.95;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 15px var(--shadow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--warm-brown), var(--light-brown));
  margin-left: 1rem;
}

section:not(.hero) {
  width: 100%;
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  position: relative;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green), var(--moss-green));
  border-radius: 2px;
}

.features-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  box-sizing: border-box;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--forest-green), var(--sage-green));
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--shadow);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.feature-card p {
  opacity: 0.8;
  line-height: 1.8;
}

.products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  box-sizing: border-box;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow);
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px var(--shadow);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 1.5rem;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  text-align: center;
}

.product-card p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.about-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
  box-sizing: border-box;
}

.about-text {
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-align: center;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  text-align: center;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
}

.testimonials {
  background: linear-gradient(135deg, var(--sage-green), var(--off-white));
  padding: 5rem 1.5rem;
  margin: 3rem 0;
  width: 100%;
}

.testimonials-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: 10px;
  left: 20px;
  color: var(--sage-green);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--forest-green);
}

.contact-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-form {
  width: 100%;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-green);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  margin-top: 0.3rem;
  width: auto;
}

.checkbox-group label {
  font-size: 0.9rem;
  opacity: 0.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-sizing: border-box;
}

.info-card {
  width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  box-sizing: border-box;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.info-card p {
  opacity: 0.9;
  line-height: 1.8;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  margin: 2rem auto 0 auto;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: linear-gradient(135deg, var(--text-dark), #5C6E63);
  color: white;
  padding: 3rem 1.5rem 1rem;
  width: 100%;
}

.footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  box-sizing: border-box;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  text-align: center;
}

.footer-section p,
.footer-section a {
  opacity: 0.9;
  line-height: 1.8;
  color: white;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--forest-green);
  transform: translateY(-3px);
}

.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  box-sizing: border-box;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 -5px 20px var(--shadow);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.privacy-popup.show {
  transform: translateY(0);
}

.popup-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-sizing: border-box;
}

.popup-content p {
  flex: 1;
  opacity: 0.9;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.success-container {
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}

.success-icon {
  font-size: 5rem;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.success-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.success-container p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.policy-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  box-sizing: border-box;
}

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  opacity: 0.9;
}

.tips-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  box-sizing: border-box;
}

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.tip-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.tip-card p {
  opacity: 0.9;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: linear-gradient(135deg, var(--forest-green), var(--sage-green));
    width: 100%;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    background-attachment: scroll;
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .popup-content {
    flex-direction: column;
    text-align: center;
  }

  .features-grid,
  .products-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    height: 300px;
  }

  section:not(.hero) {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .map-container {
    height: 250px;
    border-radius: 15px;
  }

  .info-card {
    padding: 1.5rem;
  }

  .feature-card,
  .product-card,
  .tip-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .about-text {
    padding: 0.5rem;
  }

  section:not(.hero) {
    padding: 2.5rem 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .privacy-popup {
    padding: 1rem;
  }

  .popup-buttons {
    flex-direction: column;
    width: 100%;
  }

  .popup-buttons .btn {
    width: 100%;
    margin: 0;
  }

  .popup-buttons .btn-secondary {
    margin-top: 0.5rem;
  }
}

@media (max-width: 320px) {
  header {
    padding: 0.8rem 0;
  }

  nav {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    padding: 2rem 0.75rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  section:not(.hero) {
    padding: 2rem 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-card,
  .product-card,
  .tip-card,
  .testimonial-card {
    padding: 1.25rem;
  }

  .feature-card h3,
  .product-card h3,
  .tip-card h3 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    width: 100%;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .map-container {
    height: 200px;
    border-radius: 10px;
  }

  .policy-content {
    padding: 1.5rem 1rem;
  }

  .policy-content h1 {
    font-size: 1.8rem;
  }

  .policy-content h2 {
    font-size: 1.4rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .price {
    font-size: 1.3rem;
  }

  .footer-links {
    font-size: 0.85rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .hero-content div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-content div .btn {
    margin: 0;
  }
}

table {
  width: 100%;
  overflow-x: auto;
  display: block;
}

@media (max-width: 640px) {
  .contact-container {
    gap: 1.5rem;
  }

  .features-grid,
  .products-grid,
  .tips-grid {
    gap: 1.5rem;
  }

  nav {
    padding: 0 1rem;
  }
}

