/* Hero Section */
section {
  padding: 20px !important;
}
.hero {
  background: linear-gradient(135deg, #e6f2ff 0%, #cce6ff 100%);
  padding: 80px 0;
  border-bottom: 5px solid var(--secondary);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-text .usp {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.capacity {
  background-color: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.capacity span {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--light);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Section Common Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Overview Section */
.overview {
  background-color: var(--light-gray);
}

.overview-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.overview-text p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--gray);
}

.overview-features {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-item i {
  background-color: var(--light);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.benefit-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card i {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

/* Features/Specifications Section */
.specs {
  background-color: var(--light-gray);
}

.specs-table {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid #eee;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  padding: 20px;
  background-color: #f9f9f9;
  font-weight: 600;
  color: var(--dark);
}

.spec-value {
  padding: 20px;
  color: var(--gray);
}

/* Capacity Section */
.capacity-range {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 10px;
  color: white;
}

.capacity-range h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.capacity-range p {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Applications Section */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.app-card {
  background-color: white;
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.app-card:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.app-card i {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--primary);
}

.app-card:hover i {
  color: white;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img {
  height: 180px;
  background-color: #e6f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img i {
  font-size: 60px;
  color: var(--primary);
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  margin-bottom: 10px;
  color: var(--dark);
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--dark);
  color: white;
}

.why-us .section-title h2 {
  color: white;
}

.why-us .section-title h2:after {
  background-color: var(--accent);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.reason-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reason-card i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Related Products Section */
.related-products {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.related-product {
  background-color: white;
  padding: 12px 25px;
  border-radius: 30px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}

.related-product:hover {
  background-color: var(--primary);
  color: white;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--accent);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 36px;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-name {
    background-color: white;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 50px 0;
  }

  section {
    padding: 60px 0;
  }

  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .capacity-range p {
    font-size: 36px;
  }

  .enquiry-buttons {
    flex-direction: column;
    align-items: center;
  }
}
