/* MONEL 400 - Product Section */
.product-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

/* Layout Flexbox */
.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Left: Text Content */
.product-info {
  flex: 1 1 55%;
  color:#002b45;
  text-align: justify;
}

.product-title {
  font-size: 30px;
  color: #002b45;
  margin-bottom: 20px;
  font-weight: bold;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 15px;
  text-align: justify;
}

/* Right: Image */
.product-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.product-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.product-buttons {
  margin-top: 25px;
}

.btn.blue-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #002b45;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn.blue-btn:hover {
  background-color: #f5c400;
  color: #002b45;
}

/* Tables Section */
.product-tables {
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-tables h3 {
  color:#002b45;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

/* Styled Tables */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  background-color: #ffffff;
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 15px;
}

.spec-table th {
  background-color: #041b2d;
  color: #ffffff;
  font-weight: 600;
}

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

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-image {
    justify-content: center;
    margin-top: 20px;
  }

  .product-info {
    text-align: justify;
     margin-top: -43px;
  }

  .btn.blue-btn {
    margin-bottom: 10px;
  }
}
