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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

a{color:#000}
a:hover{
    color: rgba(58,111,30,1);
}

/* Header Styles */
.header-top {
  background-color: rgba(58,111,30,1);
  color: white;
  padding: 15px 0;
  font-size: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info span {
  margin-right: 20px;
}
.header-info span i{margin-right: 10px;}
.header-social {
  display: flex;
  gap: 15px;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.social-link:hover {
  opacity: 0.8;
  color:#fff;
}


 .navbar {
      background: #fff;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar .container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
    }

    .nav-brand .logo {
      height: 50px;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      gap: 25px;
      margin: 0;
      padding: 0;
    }

    .nav-menu > li {
      position: relative;
    }

    .nav-menu > li > a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.2s;
      padding: 10px;
      display: inline-block;
    }

    .nav-menu > li:hover > a {
      color: #1e87f0;
    }

    /* 子菜单 */
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #eee;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      border-radius: 6px;
      min-width: 180px;
      padding: 8px 0;
      z-index: 999;
    }

    .dropdown li {
      list-style: none;
    }

    .dropdown a {
      display: block;
      padding: 8px 15px;
      color: #333;
      text-decoration: none;
      transition: background 0.2s;
    }

    .dropdown a:hover {
      background: #f5f5f5;
      color: #1e87f0;
    }

    .nav-menu > li:hover .dropdown {
      display: block;
      animation: fadeIn 0.25s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(5px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* 移动端样式 */
    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .nav-toggle span {
      width: 25px;
      height: 3px;
      background: #333;
      border-radius: 2px;
    }

    @media (max-width: 960px) {
      .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
        border-top: 1px solid #eee;
      }

      .nav-menu.show {
        display: flex;
      }

      .nav-toggle {
        display: flex;
      }

      .dropdown {
        position: static;
        border: none;
        box-shadow: none;
        padding-left: 20px;
      }
    }
/* 当滚动到一定高度后添加这个类 */
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  height: 50px;
  width: auto;
}
.head-my-so .uk-margin{margin-bottom: 0px;}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: rgba(68,68,68,1);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 18px;
}

.nav-menu a:hover {
  color: #4a7c59;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
    height: 2px;
    background-color: #333;
    margin: 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(74, 124, 89, 0.7), rgba(74, 124, 89, 0.7)),
              url('https://images.pexels.com/photos/1595104/pexels-photo-1595104.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.2;
}

.hero-gallery {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid white;
}

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

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.hero-prev,
.hero-next {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Classification Section */
.classification {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.classification>div{padding:0 60px}
.classification h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: bold;
}
.h-fgx{text-align: center;}
.classification p {
  text-align: center;
  
  margin: 0 auto 60px;
  color: #666;
  font-size: 1.1rem;
}

.classification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.classification-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;

  transition: transform 0.3s;
}

.classification-item:hover {
  transform: translateY(-5px);
}

.classification-icon {

  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #4a7c59;
  display: flex;
  align-items: center;
  justify-content: center;
}

.classification-icon img {

  object-fit: cover;
  border-radius: 50%;
}

.classification-item h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 15px;
  background: #3A6F1E;
  padding: 10px 10px;
  
}
.classification-item h3 a{color:#fff}

/* Products Section */
.products {
  padding: 80px 0;
  background-color: rgba(241,241,241,1);
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  color: rgb(51, 51, 51);
  margin-bottom: 0;
  font-weight: bold;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  text-align: center;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  
  height:220px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.product-item img:hover{
    transform: scale(1.1);
}

.product-item h3 {
  padding: 5px;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}
.product-item h3 a{color:rgba(102,102,102,1)}

/* Company Info Section */
.company-info {
  background: url('/static/images/bg-about.jpg') center/cover;
  padding: 150px 0;
  text-align: center;
  color: white;
}

.company-info h2 {
  font-size: 2.5rem;
  margin: 0 auto;
  line-height: 1.3;
  color:#fff;
  font-weight: bold;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: rgba(58,111,30,1);
  color: white;
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color:#fff;
}

.about p {
  text-align: center;
  margin: 20px auto 60px;
  line-height: 1.8;
}

.about-image {
  text-align: center;
  margin-bottom: 60px;
}

.about-image img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}
.about-image img:hover{
transform: scale(1.05);
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
      background: #fff;
      border-radius: 10px;
}

.about-gallery-item {
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
}

.about-gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
transition: transform 0.3s ease-in-out;
}

.about-gallery-item img:hover{
    transform: scale(1.05);
}
.about-gallery-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-top: 10px;
}
.about-gallery-item h3 a{
    color:#333;
    font-weight: bold;
}
/* Advantages Section */

.advantages-grid-adv{display: flex;align-items:center;margin-top: 65px;}
.adv-left{width:30%}
.adv-right{width: 30%;}
.adv-mid{width:40%;}


.ad-l-bk{text-align: center;margin-bottom: 25px;padding: 0 25px;}
.ad-l-bk .abdl-h2{font-size: 18px;font-weight: bold;margin: 10px 0;}
.advantages {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.advantages h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.advantage-item {
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #4a7c59;
}

.advantage-icon svg {
  width: 100%;
  height: 100%;
}

.advantage-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.advantage-item p {
  color: #666;
  line-height: 1.6;
}

.advantages-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.advantages-images img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: white;
}

.news h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.news-grid {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.news-item.featured {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width:50%;
}

.news-item.featured img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.news-item.featured .news-content {
  padding: 30px;
}

.news-item.featured h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000;
  font-weight: bold;
}

.news-item.featured p {
  color: #666;
  line-height: 1.6;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.news-item.small {
  display: flex;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item.small img {
  width: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-item.small .news-content {
  padding: 15px 15px 0 30px;
  flex: 1;
  background: #eee;
}

.news-item.small h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000;
  font-weight: bold;
  line-height: 1.3;
}

.news-item.small p {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

/* Footer */
.footer {
  background-color: rgba(58,111,30,1);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  gap: 40px;
justify-content:space-between;

}
.footer-content>div{max-width:28%;}


.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
    font-size: 16px;
 
}

.footer-section ul li a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;

}

.footer-section ul li a:hover {
  color: white;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 20px;
}


.footer-section p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.contact-info li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.contact-info li i{font-size: 16px;font-weight:bold;margin-right: 10px;}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

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



/* about 页面 */
.about-ban{
    padding:180px 0;
    text-align: center;
}
.abt-tit{font-size: 48px;font-weight:bold;color:#fff;}
.posi{border-bottom: 1px solid #eee;padding: 10px 0;}


.ny-ab-sec1{display: flex;gap: 30px;justify-content:  space-between;align-items: center;padding: 35px 0;}
.ny-ab-left .h-fgx{text-align: left;}

.ny-ab-left{width:50%;}

.ab-h2{font-size: 36px;font-weight: bold;}
.ab-tx-f{    display: flex;
    justify-content: space-between;
    background: rgba(58,111,30,1);
    padding: 30px;
    color: #fff;}
.ab-tx-f>div{font-size: 18px;}
.ab-tx-f>div i{margin-right: 10px;}
.ab-nr{padding: 30px 0;}

.ty-sec{padding:80px 0}

.cont-ty h2{font-size: 40px;text-align: center;}
.cont-ty p{text-align: center;}

.Honor-img{display: flex;}
.Honor-img>div{width:33%;}
.Honor-img>div img{width:100%;transition: transform 0.3s ease-in-out; object-fit: cover;}
.Honor-img>div img:hover{ transform: scale(1.05);}

.cont-ty{margin-bottom: 40px;}
.ab-sec-bt{text-align: center;}


.contactus-box-unique {
  background: #fff;
  font-family: Arial, sans-serif;
  padding: 50px 0;
}

.contactus-info-wrap {
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contactus-info-left,
.contactus-info-center,
.contactus-info-right {
  flex: 1;
  padding: 40px 50px;
}

.contactus-info-left {
  background: #326b25;
  color: #fff;
}
.contactus-info-left h3{color:#fff;font-weight: bold;}

.contactus-info-center,
.contactus-info-right {
  background: #fafafa;
}

.contactus-info-center {
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.contactus-info-left h3,
.contactus-info-center h3,
.contactus-info-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contactus-sub {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.contactus-info-left a {
  color: #d4ffcb;
  text-decoration: underline;
}

.contactus-info-wrap hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 10px 0 15px;
}

.contactus-form-unique {
  margin-top: 40px;
}

.contactus-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contactus-row input,
.contactus-row select,
.contactus-form-unique textarea {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: #f6f6f6;
  font-size: 14px;
  outline: none;
}

.contactus-form-unique textarea {
  width: 100%;
  resize: none;
}

.verify-row img {
  width: 100px;
  height: 40px;
  object-fit: cover;
}

.contactus-btn-submit {
  background: #326b25;
  color: #fff;
  border: none;
  padding: 12px 80px;
  font-size: 15px;
  cursor: pointer;
  float: right;
  transition: background 0.3s ease;
}

.contactus-btn-submit:hover {
  background: #27571d;
}

/* news */

.articlepage-sidebar-unique {
  flex: 0 0 260px;
}

.articlepage-newsbox-unique,
.articlepage-contactbox-unique {
  border: 1px solid #e5e5e5;
  margin-bottom: 30px;
  background: #fff;
}

.articlepage-titlebar-unique {
  background: #326b25;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  margin-bottom: 0;
}

.articlepage-newslist-unique {
  list-style: none;
  margin: 0;
  padding: 0;
}
.articlepage-newslist-unique .cate_active{background: #27571d;color:#fff}
.articlepage-newslist-unique li {
  border-bottom: 1px solid #eee;
}

.cnt-date{color:#999;margin: 15px 0;}

.articlepage-newslist-unique li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s;
}

.articlepage-newslist-unique li a:hover {
  background: #f5f5f5;
  color: #326b25;
}

.articlepage-contactlist-unique {
  list-style: none;
  padding: 15px;
  margin: 0;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}
.articlepage-contactlist-unique li{
  margin-bottom: 10px;
}
.articlepage-contactlist-unique i {
  margin-right: 8px;
  color: #326b25;
}

.articlepage-content-unique {
  flex: 1;
}

.articlepage-main-title-unique {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: bold;
}

.articlepage-list-unique {
  display: flex;
  flex-wrap: wrap;
justify-content: space-between;
}

.articlepage-item-unique {

  gap: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  width:48%;
  padding:30px;
  transition: transform 0.3s ease-in-out; 
}
.articlepage-item-unique:hover{ transform: scale(1.05);}

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

.articlepage-text-unique h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #333;
}

.articlepage-date-unique {
  font-size: 13px;
  color: #888;
}

.articlepage-desc-unique {
  font-size: 14px;
  color: #555;
  margin: 8px 0;
}

.articlepage-tag-unique {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  color: #777;
}

.articlepage-wrap-unique{
    margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  font-family: Arial, sans-serif;
}

.newslistimg{width:100%;}


.pg_feny{display: flex;margin-top: 25px;}
.pg_feny a{padding: 5px 15px;margin: 0 5px;border: 1px solid #27571d;}
.pg_feny a.page-num-current{background: #27571d;color:#fff}
.pg_feny a:hover{color: #fff;background: #27571d;}

.product-list{display: flex;flex-wrap: wrap;gap: 10px;}
.articlepage-item-product{width: calc(25% - 10px);padding: 15px;border: 1px solid #eee;text-align: center;}
.articlepage-text-product h4 a{font-size: 16px;}
.product-list .newslistimg{transition: transform 0.3s ease-in-out; }
.product-list .newslistimg:hover{ transform: scale(1.05);}

.pro_posi{display: flex;justify-content: space-between}
.pro_posi .uk-search-default{display: flex;align-items: center}


    .product-gallery { max-width:420px; margin:40px auto; user-select:none; }
    .main-image { position:relative; border:1px solid #eee; border-radius:6px; overflow:hidden; }
    .main-image img { width:100%; display:block; }
    .magnifier {
      position:absolute;
      pointer-events:none;
      border:2px solid rgba(0,0,0,0.15);
      border-radius:50%;
      width:160px;
      height:160px;
      display:none;
      z-index:10;
      box-shadow:0 6px 18px rgba(0,0,0,0.2);
      background-repeat:no-repeat;
    }

    .thumb-list { margin-top:12px; display:flex; justify-content:center; gap:10px; }
    .thumb-list img {
      width:60px; height:60px; object-fit:cover; border:2px solid transparent; border-radius:4px;
      cursor:pointer; transition:transform .16s, border-color .16s;
    }
    .thumb-list img:hover{ transform:scale(1.05); }
    .thumb-list img.active{ border-color:#1e87f0; }


 .arpro_top{display: flex;margin-bottom: 70px;}  
 .arpro_top .arpro_left{width:60%;padding-right:40px;}
 .pro_nr_ts{padding: 20px 0;}
 .pro_nr_ts>div{margin: 5px 0;}
.pro_email{background-color: #27571d;color:#fff;display: inline-block;padding:10px 40px;border-radius: 40px;}
.pro_email i{margin-right: 10px;}
.pro_next{margin-top: 15px;;}
.arpro_right{height:300px}

@media (min-width: 768px) {
  .pc-hide{display: none;}
  .pc-show{display: block;}
}
@media (max-width: 768px) {
  .wap-hide{display: none;}
  .wap-show{display: block;}
}

/* Responsive Design */
@media (max-width: 768px) {
  .ny-ab-sec1{display: block;padding: 0 10px;}
  .ty-sec{padding: 30px 0;}
  .ny-ab-left{width: 100%;}
  .contactus-info-wrap{display: block;}
  .contactus-row{display: block;}
  .contactus-row input{width: 100%;margin-bottom: 5px;}
  .contactus-box-unique{margin-bottom: 50px;}
  .contactus-info-left{padding: 15px;}
  .contactus-info-center{padding: 15px;}
  .contactus-info-right{padding: 15px;}
  .container {
    max-width: 768px;
  }
  .arpro_left{width: 98% !important;padding:10px !important;;}
  .arpro_right{display: none;}
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .articlepage-item-unique img{height:120px}
  .articlepage-text-unique h4{font-size: 14px;}
  .articlepage-item-unique{padding: 5px;}
  .nav-menu.active {
    display: flex;
  }
  .article-cnt{padding:0 10px}
  
  .nav-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-gallery {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .gallery-item {
    width: 120px;
    height: 80px;
  }
  
  .classification-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-item.small {
    flex-direction: column;
  }
  
  .news-item.small img {
    width: 100%;
    height: 150px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .about-gallery {
    grid-template-columns: 1fr;
  }
  
  .advantages-images {
    flex-direction: column;
    align-items: center;
  }
  
  .advantages-images img {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .classification h2,
  .products h2,
  .about h2,
  .advantages h2,
  .news h2 {
    font-size: 2rem;
  }
  
  .company-info{padding:50px 0;}
  .company-info h2 {
    font-size: 1.6rem;
  }
  .about{background:#94b69d ;}
  .hero-gallery {
    justify-content: center;
  }
  
  .gallery-item {
    width: 100px;
    height: 70px;
  }

  .footer-content>div{
      max-width: 100%;
  }
  .footer-content{flex-wrap:wrap}
  .header-info span{width:100%;display: block;}
.classification>div{padding:0 5px}
.classification-item{padding:5px }

.products .products-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
   justify-content:space-between
}
.products-grid .product-item{width: calc(50% - 5px);}

.container{padding:0 5px}
.products{padding:30px 0;}
.products-grid{margin-top: 10px;}
.product-item img{height:160px}
.product-item h3{margin-top: 5px;margin-bottom: 3px;}

.advantages-grid-adv{display: block;}
.adv-left,.adv-mid,.adv-right{width:100%;}
.advantages{padding:30px 0}
.news{padding:30px 0}

.news .news-grid{display: block;}
.news-item.featured{width: 100%;}
.news-sidebar{width: 100%;}
.news-item.small{flex-direction:row}
.news-item.small h4{font-size: 14px;font-weight: 400;}
.news-item.small p{font-size: 12px;}
.news-item.small .news-content{padding:5px;}

.footer-content{padding: 0 5px;}
.nav-menu{justify-content: flex-start;padding: 0 20px;gap: 10px;}

.articlepage-contactbox-unique{display: none;}

.articlepage-wrap-unique{display: block;}
.articlepage-item-product{width: calc(50% - 10px);}

.pro_posi{display: none;}

.pg_feny{margin: 10px 0;}

.about-ban{padding:50px 0}
.abt-tit{font-size: 20px;}


}
