:root {
  --primary-color: #2c5f2d;
  --primary-dark: #1e4620;
  --secondary-color: #97bc62;
  --accent-color: #8bc34a;
  --text-color: #333;
  --light-text: #666;
  --white: #ffffff;
  --light-bg: #f5f7f4;
  --border-color: #e0e6d8;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  font-weight: bold;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.3;
}

.logo-text span {
  display: block;
  font-size: 14px;
  color: var(--light-text);
  font-weight: normal;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-item {
  padding: 10px 20px;
  color: var(--text-color);
  font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-item:hover,
.nav-item.active {
  background: var(--primary-color);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 35px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.25);
  letter-spacing: 3px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.hero-title::before,
.hero-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.6);
  transform: translateY(-50%);
}

.hero-title::before {
  left: -80px;
}

.hero-title::after {
  right: -80px;
}

.hero-desc {
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.95;
  line-height: 1.8;
  font-weight: 500;
}

.hero-desc p {
  margin: 0;
  line-height: 1.6;
}

.desc-secondary {
  font-size: 18px;
  font-weight: 400;
  margin-top: 8px !important;
  opacity: 0.9;
}

.highlight-badge {
  background: var(--accent-color);
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title p {
  color: var(--light-text);
  font-size: 16px;
  margin-top: 15px;
}

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

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-bg);
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  padding: 30px 15px 15px;
  pointer-events: none;
}

.image-overlay h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.image-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: pointer;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 95, 45, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.intro-text h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-image {
  margin-top: 0;
}

.intro-section {
  background: var(--white);
  padding: 60px 0;
}

.intro-section .section-title-text {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.intro-text-full {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.intro-text-full p {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text-full .intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-image-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.intro-image-full .image-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 10px;
}

.stat-item .number {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.stat-item .label {
  font-size: 14px;
  color: var(--light-text);
  margin-top: 5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--light-text);
  line-height: 1.6;
}

.category-section {
  padding: 60px 0;
  background: var(--light-bg);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.category-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.category-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-image:hover {
  transform: scale(1.02);
}

.category-content {
  padding: 20px;
}

.category-content h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.category-content p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

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

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

.btn-center {
  text-align: center;
  margin-top: 40px;
}

.intro-text .btn-center {
  margin-top: 50px;
  padding-bottom: 0;
}

.intro-text .btn {
  display: inline-block;
  padding: 12px 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.intro-text .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.section-alt .btn-center {
  margin-top: 50px;
}

.breadcrumb {
  background: var(--light-bg);
  padding: 15px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb-list li:not(:last-child)::after {
  content: '>';
  margin-left: 10px;
  color: var(--light-text);
}

.breadcrumb-list a {
  color: var(--primary-color);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card p,
.info-card li {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 10px;
}

.info-card ul {
  list-style: disc;
  padding-left: 20px;
}

.contact-info {
  background: var(--white);
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-intro h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-intro h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-intro p {
  font-size: 18px;
  color: var(--light-text);
  margin-top: 25px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 95, 45, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.card-content h3 {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 10px;
  font-weight: 500;
}

.card-value {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--light-text);
  opacity: 0.8;
}

.wechat-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.wechat-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 30px;
  text-align: center;
}

.wechat-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.wechat-header p {
  font-size: 14px;
  opacity: 0.9;
}

.wechat-body {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.wechat-body .wechat-qrcode {
  flex-shrink: 0;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
}

.wechat-body .wechat-qrcode img {
  width: 180px;
  height: auto;
}

.wechat-tips {
  flex: 1;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.tip-item:last-child {
  border-bottom: none;
}

.tip-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-color);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.tip-item span:last-child {
  color: var(--text-color);
  font-size: 15px;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .wechat-body {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 25px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .card-value {
    font-size: 18px;
  }

  .wechat-body {
    padding: 20px;
  }

  .wechat-body .wechat-qrcode img {
    width: 150px;
  }

  .contact-intro h2 {
    font-size: 28px;
  }

  .contact-intro p {
    font-size: 16px;
  }
}

.contact-details {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--light-text);
  font-size: 15px;
}

.wechat-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.wechat-section h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.wechat-qrcode {
  background: white;
  padding: 20px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.wechat-qrcode img {
  width: 200px;
  height: auto;
  display: block;
}

.wechat-hint {
  color: var(--light-text);
  font-size: 14px;
  margin-top: 10px;
}

.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px 0 20px;
}

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

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.footer-section p,
.footer-section li {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.footer-bottom .license-info {
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.footer-bottom .license-info a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .license-info a:hover {
  color: #8bc34a;
  text-decoration: underline;
}

.footer-bottom .tech-support {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top.show {
  display: flex;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  transform: scale(1.2);
}

.modal-caption {
  color: white;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.image-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.image-list-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.image-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.image-list-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-list-item .caption {
  padding: 15px;
  text-align: center;
  color: var(--text-color);
  font-weight: 500;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.about-intro .section-title {
  margin-bottom: 40px;
}

.about-intro .section-title h2 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.title-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

.about-text {
  background: var(--white);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.about-text::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 80px;
  color: var(--secondary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 25px;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--light-bg);
}

.about-text .highlight-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 25px 30px;
  border-radius: 12px;
  margin-top: 30px;
  font-weight: 500;
  text-align: center !important;
  box-shadow: 0 4px 15px rgba(44, 95, 45, 0.2);
}

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

.gap-news {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 30px;
}

.gap-news-text {
  flex: 1;
  padding-right: 20px;
}

.gap-news-text h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
}

.gap-news-text h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.gap-news-text p {
  font-size: 16px;
  color: var(--primary-color);
  line-height: 2;
  text-align: justify;
  font-weight: 600;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.gap-news-image {
  flex: 0 0 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gap-news-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gap-news-image img:hover {
  transform: scale(1.02);
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
  aspect-ratio: 16 / 9;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  position: relative;
  background: #f5f5f5;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  cursor: pointer;
  display: block;
}

.carousel-slide img:hover {
  opacity: 0.9;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  color: var(--primary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 10;
}

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

.carousel-btn-left {
  left: 20px;
}

.carousel-btn-right {
  right: 20px;
}

.carousel-dots {
  text-align: center;
  padding: 20px 0;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(44, 95, 45, 0.3);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.products-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 20px 0;
}

.products-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.products-table thead {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.products-table th {
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-table tbody tr {
  transition: background-color 0.3s ease;
}

.products-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.products-table tbody tr:hover {
  background: #f0f7f0;
}

.products-table td {
  padding: 12px 10px;
  text-align: center;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  color: var(--text-color);
}

.products-table tbody tr td:first-child {
  font-weight: 600;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .gap-news {
    flex-direction: column;
    padding: 20px;
  }

  .gap-news-text {
    padding-right: 0;
    text-align: center;
  }

  .gap-news-image {
    flex: 0 0 auto;
    width: 100%;
  }

  .carousel-container {
    max-width: 100%;
  }

  .carousel {
    aspect-ratio: 16 / 9;
  }

  .carousel-slide img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-btn-left {
    left: 10px;
  }

  .carousel-btn-right {
    right: 10px;
  }
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.highlight-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 95, 45, 0.15);
  border-color: var(--secondary-color);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.highlight-card p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .nav.active {
    display: flex;
  }

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

  .hero {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .section {
    padding: 40px 0;
  }

  .intro-text-full .intro-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .intro-image-full {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal-overlay {
    padding: 15px;
  }

  .modal-content img {
    max-height: 70vh;
  }

  .modal-close {
    top: -45px;
    font-size: 40px;
  }

  .modal-caption {
    font-size: 16px;
    margin-top: 15px;
  }
}