/* Product Page Styles */
body {
  font-family: "Segoe UI", sans-serif;
}
.product-page .hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
}

.product-page .hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
}

.product-page .hero p {
  font-size: 18px;
  max-width: 650px;
  margin: 0 auto 30px auto;
  color: #555;
}

.product-page .hero .cta-btn {
  background: #e67e22;
  color: #fff;
  padding: 14px 34px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
}

.product-page .hero .cta-btn:hover {
  background: #cf6a17;
  color: #fff;
}

.product-page .features {
  padding: 60px 20px;
  background: #fff;
  max-width: 1200px;
  margin: auto;
}

.product-page .features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #222;
}

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

.product-page .feature {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-page .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-page .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e67e22;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.product-page .feature h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #111;
}

.product-page .feature p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.product-page .cta-section {
  background: #e67e22;
  text-align: center;
  padding: 90px 20px 120px;
  color: #fff;
}

.product-page .cta-section h2 {
  font-size: 34px;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-page .cta-section p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 35px auto;
  line-height: 1.5;
}

.product-page .cta-section a {
  background: #fff;
  color: #e67e22;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
}

.product-page .cta-section a:hover {
  background: #f9f9f9;
  color: #e67e22;
}

@media (max-width: 1024px) {
  .product-page .hero h1 {
    font-size: 30px;
  }
  .product-page .hero p {
    font-size: 15px;
  }
  .product-page .features h2 {
    font-size: 26px;
  }
  .product-page .feature h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .product-page .hero {
    padding: 60px 15px;
  }
  .product-page .hero h1 {
    font-size: 26px;
  }
  .product-page .hero p {
    font-size: 14px;
  }
  .product-page .features .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-page .features {
    padding: 40px 15px;
  }
  .product-page .cta-section h2 {
    font-size: 24px;
  }
  .product-page .cta-section p {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .product-page .cta-section a {
    padding: 12px 28px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .product-page .hero h1 {
    font-size: 22px;
  }
  .product-page .hero p {
    font-size: 13px;
  }
  .product-page .features h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .product-page .feature h3 {
    font-size: 16px;
  }
  .product-page .cta-section h2 {
    font-size: 20px;
  }
  .product-page .cta-section p {
    font-size: 14px;
  }
}
