/* Product Page Styles */
.product-container {
  max-width: 100%;
  padding: 20px 40px;
  line-height: 1.6;
}

.product-header {
  margin-bottom: 40px;
  text-align: left;
}

.product-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.product-text {
  flex: 2;
  min-width: 60%;
  text-align: left;
}

.product-image {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 20px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.product-section {
  margin-bottom: 30px;
  text-align: left;
}

.product-section h3 {
  color: #1a5dad;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: left;
}

.product-section ul, .product-section ol {
  list-style-position: outside;
  padding-left: 20px;
  margin-bottom: 15px;
}

.product-section ul {
  list-style-type: disc;
}

.product-conclusion {
  background-color: #f5f9ff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: left;
}

.cta-section {
  text-align: center;
  padding: 30px;
  background-color: #e9f2ff;
  border-radius: 8px;
  margin-bottom: 20px;
}

.cta-section h3 {
  margin-bottom: 15px;
  color: #1a5dad;
}

.cta-email {
  font-weight: bold;
  color: #1a5dad;
}

@media (max-width: 992px) {
  .product-container {
    padding: 20px;
  }
  
  .product-content {
    flex-direction: column;
  }
  
  .product-image {
    order: -1;
    max-width: 100%;
    margin: 0 auto 30px;
    position: static;
  }
  
  .product-text {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .product-image {
    min-width: 100%;
  }
} 