:root {
  --primary-color: #2c5e1e;
  --secondary-color: #4a8c2c;
  --accent-color: #ff6b35;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden;
}

/* Header Styles */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 1rem 15px;
  box-sizing: border-box;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  height: 50px;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

#navbar {
  display: flex;
  gap: 2rem;
}

#navbar a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--transition);
}

#navbar a:hover {
  color: var(--primary-color);
  background: var(--light-bg);
}

#navbar a.active {
  color: var(--white);
  background: var(--primary-color);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-modern {
  position: relative;
  height: 600px;
  margin-top: 80px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.icon {
  width: 24px;
  height: 24px;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.icon:hover {
  transform: scale(1.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .features-modern {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    margin-top: 2.5em !important;
}
.feature-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .main-header, .nav-flex {
    width: 100%;
  }

  main {
    width: 100%;
    padding: 0 15px;
    margin: 0;
  }

  .features-modern,
  .feature-card,
  .feature-card *:not(.badge),
  .product-grid,
  .product-grid *:not(.badge) {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }
  .feature-card {
    padding: 1em 0.5em !important;
    border-radius: 12px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: auto !important;
    max-width: calc(100% - 20px) !important;
  }
  .feature-card img, .feature-card .product-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .hero-modern {
    background: url('images/banner.jpg') center center / cover no-repeat !important;
    min-height: 220px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .hero-img {
    display: none !important;
  }
  .hero-overlay {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  .hero-content {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    z-index: 2 !important;
    padding: 1.5em 1em 1em 1em !important;
  }
  .hero-content h1 {
    font-size: 2em !important;
    margin-bottom: 0.5em !important;
    line-height: 1.1 !important;
  }
  .hero-sub-mobile {
    font-size: 1.15em !important;
    margin-bottom: 1em !important;
    line-height: 1.3 !important;
  }
  .hero-img { display: none !important; }
  .hero-img-mobile { display: block !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .hero-content > div {
    flex-direction: column !important;
    gap: 0.5em !important;
    align-items: center !important;
    width: 100% !important;
    display: flex !important;
  }
  .btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    font-size: 0.95em !important;
    padding: 0.6em 0 !important;
  }

  .cta-modern {
    width: 100%;
    padding: 1.5rem;
    margin: 1em 0;
  }

  .product-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2em !important;
    padding: 0 0.5em !important;
  }

  .news-container,
  .contact-container {
    width: 100%;
    padding: 0;
    margin: 1em 0;
  }

  .news-article,
  .contact-form,
  .contact-info,
  .business-hours {
    width: 100%;
    padding: 1.5rem;
    margin: 1em 0;
  }

  .company-name {
    font-size: 1.3rem;
  }

  .hamburger {
    display: block;
    margin-right: 0;
    padding: 0.5rem;
  }

  #navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 20px;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow);
    box-sizing: border-box;
  }

  #navbar.show {
  display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .footer-flex {
  flex-direction: column;
    text-align: center;
  }

  .features-modern {
    width: 100% !important;
    margin: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .feature-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1em 0.7em !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .product-img {
    width: 100% !important;
    height: 160px !important;
    min-height: 120px !important;
    max-height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 10px 10px 0 0 !important;
    margin-bottom: 1em !important;
    display: block !important;
  }
  .feature-card h2 {
    font-size: 1.1em !important;
    margin: 0.5em 0 0.3em 0 !important;
    text-align: left !important;
  }
  .feature-card p {
    font-size: 0.98em !important;
    margin-bottom: 0.7em !important;
    text-align: left !important;
  }
  .badge {
    display: inline-block !important;
    width: auto !important;
    min-width: unset !important;
    max-width: 100% !important;
    padding: 0.22em 0.7em !important;
    margin-top: 0.6em !important;
    font-size: 0.95em !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
  }

  .hero-modern {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-content {
    width: 90%;
    padding: 0 15px;
  }

  .cta-modern {
    width: 100%;
    max-width: 100%;
    margin: 1em 0;
    padding: 1em;
  }

  .testimonial-card,
  .feature-card {
    padding: 1em 0.5em !important;
    border-radius: 12px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: auto !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
  }
  /* Optional: Uncomment to force all cards to the same minimum height */
  /* .testimonial-card, .feature-card {
    min-height: 220px !important;
  } */

  .testimonials,
  .testimonial-cards,
  .features-modern {
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box !important;
  }
  .testimonial-card,
  .feature-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .testimonials {
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: auto !important;
    max-width: calc(100% - 20px) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-buttons,
  .hero-buttons * {
    display: flex !important;
    height: auto !important;
    min-height: 0 !important;
    padding: initial !important;
    margin: initial !important;
    border: initial !important;
    box-shadow: initial !important;
    background: initial !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    gap: 0.7em !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 1em !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    font-size: 1em !important;
    padding: 0.7em 0 !important;
    display: block !important;
  }

  .btn-secondary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
  }

  .hero-modern + .container > .features-modern,
  .hero-modern + .features-modern,
  main > .features-modern:first-of-type {
    margin-top: 2.5em !important;
    padding-top: 0 !important;
    border-top: none !important;
  }
  .mobile-spacer {
    display: block !important;
    height: 2.5em !important;
    width: 100% !important;
    background: transparent !important;
  }

  .cta-modern {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1em !important;
  }
  .cta-modern .btn {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .products-hero-content .btn {
    width: 100% !important;
    max-width: 320px !important;
    min-width: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 1em !important;
    padding: 0.7em 0.5em !important;
    margin: 0.5em auto 0 auto !important;
    display: block !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .products-category-title {
    margin-left: 10px !important;
    margin-right: 10px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .feature-card > .badge,
  .product-grid > .badge {
    all: unset;
    display: inline-block !important;
    background: #eaf6ee !important;
    color: #22501a !important;
    font-size: 0.95em !important;
    padding: 0.22em 0.7em !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    margin-top: 0.6em !important;
    margin-bottom: 0.2em !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
  }

  .faq-section, .faq-section h3, .faq-item {
    padding-left: 15px !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 769px) {
  .hero-sub-mobile { display: none !important; }
  .hero-img-mobile { display: none !important; }
}

/* Tablet Responsive Styles - iPad Pro and other tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }
  
  .nav-flex {
    padding: 0 20px;
  }
  
  .company-name {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .company-name img {
    height: 35px;
    flex-shrink: 0;
  }
  
  .company-name span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  #navbar {
    gap: 0.9rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  #navbar::-webkit-scrollbar {
    display: none;
  }
  
  #navbar a {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .main-header {
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }
  
  .hero-modern {
    height: 500px !important;
    margin-top: 80px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .hero-sub {
    font-size: 1.1rem;
  }
  
  .features-modern {
    gap: 1.5rem;
    padding: 0 10px;
  }
  
  .feature-card {
    flex: 1 1 300px;
    min-height: 280px;
  }
}

/* Large Tablet and Small Desktop - iPad Pro landscape and larger tablets */
@media (min-width: 1025px) and (max-width: 1200px) {
  .container {
    padding: 0 25px;
  }
  
  .nav-flex {
    padding: 0 25px;
  }
  
  .company-name {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .company-name img {
    height: 40px;
    flex-shrink: 0;
  }
  
  .company-name span {
    white-space: nowrap;
  }
  
  #navbar {
    gap: 1.8rem;
    flex-wrap: nowrap;
  }
  
  #navbar a {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .main-header {
    padding: 1rem 0;
  }
  
  .hero-modern {
    height: 550px !important;
    margin-top: 90px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content .hero-sub {
    font-size: 1.2rem;
  }
}

/* iPad Pro Portrait Mode Specific - 1024px */
@media (width: 1024px) and (orientation: portrait) {
  .nav-flex {
    padding: 0 30px;
  }
  
  .company-name {
    font-size: 1.15rem;
  }
  
  .company-name img {
    height: 38px;
  }
  
  #navbar {
    gap: 1.6rem;
  }
  
  #navbar a {
    font-size: 0.92rem;
    padding: 0.45rem 0.9rem;
  }
  
  .main-header {
    padding: 0.9rem 0;
  }
  
  .hero-modern {
    height: 520px !important;
    margin-top: 85px;
  }
  
  .hero-content h1 {
    font-size: 2.6rem;
  }
  
  .hero-content .hero-sub {
    font-size: 1.15rem;
  }
}

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

.feature-card, .hero-content {
  animation: fadeIn 0.6s ease-out;
}

.features-modern {
  display: flex;
  gap: 2em;
  margin: 2em 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  margin-bottom: 1em;
}

.feature-card h2 {
  font-size: 1.3em;
  margin: 0.5em 0 0.3em 0;
  color: #22501a;
}

.feature-card p {
  color: #444;
  font-size: 1em;
  margin-bottom: 1em;
}

.badge {
  display: inline-block;
  background: #eaf6ee;
  color: #22501a;
  font-size: 0.9em;
  padding: 0.25em 0.9em;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 0.7em;
  margin-bottom: 0.2em;
  min-width: 2.5em;
  width: auto;
  box-sizing: border-box;
  word-break: break-word;
}

.badge-green { background: #d4f5c6; color: #2d6a1f; }
.badge-yellow { background: #fff9c4; color: #bfa600; }
.badge-blue { background: #e3f0ff; color: #1a4a7a; }
.badge-orange { background: #ffe0b2; color: #b26a00; }

.cta-modern {
  background: #eaf6ee;
  border-radius: 14px;
  padding: 2em 1em;
  text-align: center;
  margin: 2em auto 0 auto;
  max-width: 600px;
  box-shadow: 0 2px 12px #0001;
}

.cta-modern h2 {
  color: #215732;
  margin-bottom: 1em;
}
footer {
  background: #183c22;
  color: #fff;
  padding: 1.5em 0 1em 0;
  margin-top: 2em;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.icon {
  width: 28px;
  margin: 0 0.3em;
  vertical-align: middle;
  filter: invert(1);
}
@media (max-width: 900px) {
  .features-modern { flex-direction: column; }
  .footer-flex { flex-direction: column; gap: 1em; }
  .hero-modern, .hero-img { height: 500px; }
  .hero-content { margin-left: 0; text-align: center; }
}
@media (max-width: 700px) {
  nav { display: none; flex-direction: column; background: #215732; position: absolute; right: 0; top: 60px; width: 100%; }
  nav.show { display: flex; }
  .hamburger { display: block; }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .product-img {
    height: 120px;
  }
}
.testimonials {
  margin: 3em 0 2em 0;
  text-align: center;
}

.testimonials .subtitle {
  color: #f7c948;
  font-size: 1.1em;
  margin-bottom: 1em;
  letter-spacing: 1px;
}

.testimonial-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.testimonial-card {
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 4px 24px #0002;
  padding: 2em 1.5em 1.5em 1.5em;
  max-width: 340px;
  min-width: 260px;
  margin: 1em 0;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-card .quote-icon {
  width: 32px;
  margin-bottom: 0.5em;
  opacity: 0.3;
}

.testimonial-card .client-row {
  display: flex;
  align-items: center;
  margin-top: 1.2em;
}

.testimonial-card .client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.8em;
  border: 2px solid #f7c948;
}

.testimonial-card .client-info {
  display: flex;
  flex-direction: column;
}

.testimonial-card .client-name {
  font-weight: bold;
  color: #215732;
  font-size: 1em;
}

.testimonial-card .client-location {
  color: #888;
  font-size: 0.95em;
}

.about-keypoints {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em 5em;
  margin-top: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.about-keypoints > div {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  background: #f6f9f4;
  border-radius: 10px;
  padding: 1em 1.2em;
  min-width: 220px;
  max-width: 320px;
  box-shadow: 0 2px 8px #0001;
  transition: background 0.2s, box-shadow 0.2s;
  margin-bottom: 1em;
}

.about-keypoints > div:hover {
  background: #e2f0e6;
  box-shadow: 0 4px 16px #0002;
}

.about-keypoints img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-top: 2px;
}

.about-keypoints strong {
  color: #215732;
  font-size: 1.08em;
}

.about-keypoints p {
  margin: 0.2em 0 0 0;
  font-size: 0.98em;
  color: #444;
}

@media (max-width: 900px) {
  .about-keypoints { flex-direction: column; }
  .about-keypoints > div { max-width: 100%; }
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin: 2em 0;
  justify-content: center;
  text-align: center;
}

.about-value {
  background: #eaf6ee; /* Soft green pastel */
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  padding: 2em 1.2em;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1em;
}

.about-value:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(33,87,50,0.13);
}

.about-value h3 {
  color: #215732;
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

.about-value p {
  color: #444;
  font-size: 1em;
  margin: 0;
}

@media (max-width: 900px) {
  html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .about-main {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .about-text {
    width: 94%;
    max-width: 600px;
    margin: 0 auto 1.5em auto;
    padding: 1.5em 1em;
    background: #eaf6ee;
    border-radius: 12px;
    box-shadow: 0 2px 12px #0001;
    font-size: 1.08em;
    line-height: 1.7;
  }
  .about-values {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    gap: 1.2em;
  }
  .about-value {
    width: 94%;
    max-width: 600px;
    margin: 0 auto 1.2em auto;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 2em 1em;
    font-size: 1.08em;
    background: #eaf6ee;
    box-shadow: 0 2px 12px #0001;
  }
}

.about-main {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.about-text {
  background: #eaf6ee;
  border-radius: 14px;
  padding: 2em 1.5em;
  box-shadow: 0 2px 12px #0001;
  font-size: 1.13em;
  line-height: 1.8;
  color: #215732;
  margin-bottom: 2em;
}

.about-text h2 {
  color: #22501a;
  font-size: 1.5em;
  margin-bottom: 1em;
  font-weight: 700;
}

.about-text .highlight {
  background: #fff9c4;
  color: #bfa600;
  padding: 0.1em 0.3em;
  border-radius: 6px;
  font-weight: 600;
}

.product-badge {
  display: inline-block;
  background: #215732;
  color: #fff;
  font-size: 0.85em;
  padding: 0.3em 1em;
  border-radius: 8px;
  margin-bottom: 0.7em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.products-hero {
  position: relative;
  height: 320px;
  margin-bottom: 2em;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.products-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  background: linear-gradient(120deg,rgba(34,60,34,0.7) 0%,rgba(34,60,34,0.5) 100%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
}

.products-hero-content {
  text-align: center !important;
  margin: 0 auto;
  padding: 2em 1em;
  max-width: 700px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: rgba(34,60,34,0.35);
  border-radius: 12px;
  box-shadow: 0 4px 24px #0003;
}

.products-hero-content h1,
.products-hero-content p {
  text-align: center !important;
  width: 100%;
}

.products-hero-content h1 {
  margin-top: 2.5em;
  margin-bottom: 1em;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 1px;
}

.products-hero-content p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1em;
}

.products-hero-content .btn {
  margin-bottom: 1em;
}
.products-hero-content .btn:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .products-hero {
    height: 400px !important;
    min-height: 300px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .products-hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.2em !important;
    padding-top: 2em !important;
    padding-bottom: 2em !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .products-hero-content h1,
  .products-hero-content p,
  .products-hero-content .btn {
    margin: 0 !important;
  }
}

.products-hero,
.products-hero-overlay {
  border-radius: 0 !important;
}

/* Main Content Styles */
main {
  margin-top: 100px; /* Add space for fixed header */
  min-height: calc(100vh - 300px); /* Ensure minimum height for content */
  padding-bottom: 2rem;
}

/* News Page Specific Styles */
.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.news-articles {
  flex: 2 1 400px;
}

.news-article {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.news-article h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.news-article small {
  color: #666;
  display: block;
  margin-top: 0.5rem;
}

.news-sidebar {
  flex: 1 1 250px;
  background: var(--light-bg);
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
}

.news-sidebar h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.news-sidebar ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.news-sidebar li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.news-sidebar li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.news-form input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  main {
    margin-top: 80px;
  }
  
  .news-container {
    flex-direction: column;
  }
  
  .news-articles,
  .news-sidebar {
    width: 100%;
  }
}

/* News Hero Section */
.news-hero {
  position: relative;
  height: 300px;
  background: url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.news-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.news-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.news-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.news-hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* News Articles */
.news-article {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.news-article:hover {
  transform: translateY(-5px);
}

.news-article-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.news-article-content {
  padding: 1.5rem;
}

.news-date {
  color: #666;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.news-article h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.news-article p {
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Sidebar Styles */
.sidebar-section {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.updates-list {
  list-style: none;
  padding: 0;
}

.updates-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.updates-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.update-badge {
  background: var(--primary-color);
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.8rem;
}

.update-text {
  color: #444;
  font-size: 0.95rem;
}

.newsletter-text {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.news-form input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.news-form .btn {
  width: 100%;
}

@media (max-width: 768px) {
  .news-hero {
    height: 200px;
    margin-top: 60px;
  }

  .news-hero-content h1 {
    font-size: 2rem;
  }

  .news-hero-content p {
    font-size: 1rem;
  }

  .news-article-image {
    height: 160px;
  }
}

/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 300px;
  background: url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-form-section {
  flex: 2 1 400px;
}

.contact-info {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: auto;
  min-height: 300px;
  overflow: hidden;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  color: #666;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.4;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* iPad Pro and iPad Air Portrait Mode Responsive */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .contact-form-section {
    flex: 1 1 100%;
    order: 1;
  }
  
  .contact-sidebar {
    flex: 1 1 100%;
    order: 2;
  }
  
  .contact-info {
    height: auto !important;
    min-height: auto !important;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    overflow: visible;
  }
  
  .contact-details {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .contact-item p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto;
    max-width: 100%;
  }
}

/* iPad Air Portrait Mode Specific - 768px */
@media (max-width: 768px) {
  .contact-container {
    gap: 1rem;
    margin-top: 1rem;
    padding: 0 15px;
  }
  
  .contact-info {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }
  
  .contact-details {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .contact-item {
    margin-bottom: 0.8rem;
  }
  
  .contact-item p {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .contact-sidebar {
    padding: 0;
  }
  
  .business-hours,
  .faq-section {
    padding: 1rem;
    margin-bottom: 1rem;
  }
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #444;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Contact Sidebar */
.contact-sidebar {
  flex: 1 1 300px;
}

.business-hours {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  height: 300px;
}

.business-hours h3,
.faq-section h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.business-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.business-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.business-hours li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.day {
  color: #444;
  font-weight: 500;
}

.time {
  color: #666;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #444;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 200px;
    margin-top: 60px;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form-section,
  .contact-sidebar {
    width: 100%;
  }

  .contact-info,
  .business-hours {
    height: auto;
  }
}

.company-name {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
}

.company-name:hover {
  color: var(--secondary-color);
}

.products-header {
  width: 100%;
  padding: 2em 0 1em 0;
  text-align: center;
  background: #fff;
}

.products-page-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  margin: 0;
  color: #215732;
  padding: 0 15px;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 768px) {
  .products-header {
    padding: 1.5em 0 1em 0;
    margin-top: 80px;
  }

  .products-page-title {
    font-size: 1.8em;
    margin: 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    display: block;
    position: relative;
    z-index: 1;
  }
  
  main.container {
    margin-top: 0;
    padding-top: 0;
  }
}

/* Ensure title is not cut off on desktop */
.products-header {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .products-header {
    margin-top: 80px;
  }
  .feature-card .badge,
  .product-grid .badge {
    display: inline-block !important;
    width: initial !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0.22em 0.7em !important;
    margin-top: 0.6em !important;
    font-size: 0.95em !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
  }
}

.features-modern,
.features-modern *:not(.badge),
.feature-card,
.feature-card *:not(.badge),
.product-grid,
.product-grid *:not(.badge) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  /* ... other properties ... */
}

.about-hero-content h1 {
  font-size: 3em;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.2em;
  }
} 
