.product-page {
  padding: 80px 0;
}

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

.product-details {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.product-image {
  flex: 0 0 320px;
  max-width: 320px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info {
  flex: 1;
}

.product-title {
  font-size: 36px;
  color: #1b2b4d;
  margin-bottom: 20px;
}

.product-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.product-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #35419c;
}

.button-container {
  display: flex;
  gap: 10px;
}

.enquiry-btn,
.whatsapp-btn {
  flex: 1;
  text-align: center;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.enquiry-btn {
  background-color: #35419c;
  color: white;
  border: none;
}

.enquiry-btn:hover {
  background-color: #2a3479;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
}

.whatsapp-btn svg {
  margin-right: 8px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.submit-btn {
  background-color: #35419c;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2a3479;
}

@media (max-width: 1024px) {
  .product-details {
    flex-direction: column;
  }

  .product-image {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 40px 0;
  }

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

  .button-container {
    flex-direction: column;
  }

  .enquiry-btn,
  .whatsapp-btn {
    width: 100%;
  }

  .modal-content {
    width: 90%;
    margin: 10% auto;
  }
}

