body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
   text-decoration: none;
}

.entry-content p {
  text-align: justify;
  font-size: 20px;
  font-family: "Hanken Grotesk", sans-serif;
}

.entry-content {
  padding: 36px 3px;
}

.product-content-holder {
  padding-right: 30px;
}

/* Typography Styles */
h2.content-heading-h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0066cc;
}

h3.content-heading-h3 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin: 25px 0 15px;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

strong {
  font-weight: 600;
  color: #333;
}

/* Product Image */
.product-page-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    body {
      font-family: Arial, sans-serif;
      background: #f9f9f9;
      padding: 20px;
    }
    h2 {
      text-align: left;
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
    }
    .table-container {
      width: 100%;
      overflow-x: auto; /* Scroll on small screens */
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
      background: #fff;
      padding: 10px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }
    th,td {
      border: 1px solid #ddd;
      padding: 10px 12px;
      text-align: center;
      font-size: 14px;
    }
    th {
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      font-size: 15px;
    }
    tr:nth-child(even) {
      background-color: #f4f6f7;
    }
    tr:hover {
      background-color: #eaf2f8;
    }
    @media (max-width: 768px) {
      th, td {
        font-size: 12px;
        padding: 8px;
      }
    }

/* Lists */
ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Sidebar Styles */
.product-page-global-sidebar {
  background: #f9f9f9;
  padding: 1px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mega-side-bar-menu-finv {
  margin-bottom: 30px;
  min-width: 100%;
  background: #f4f4f4;
  padding: 30px 20px 10px;
  margin-top: 10px;
}

.mega-side-bar-menu-finv h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}

.custom-hr {
  border-top: 2px solid #0066cc;
  margin-top: -10px;
}

/* Dropdown Menu Styles */
.pm_leveltop {
  margin-bottom: 20px;
}

.pm_levelsecond {
  list-style: none;
  padding-left: 0;
}

.pm_levelsecond > li {
  margin-bottom: 10px;
  position: relative;
}

.primary-product-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-weight: 600;
  text-decoration: none !important;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-product-menu:hover {
  color: #0066cc;
}

.pm_levelarrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.pm_levelarrow i {
  font-size: 12px;
}

.pm_levelthird {
  list-style: none;
  padding-left: 15px;
  margin-top: 8px;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pm_levelthird li {
  margin-bottom: 5px;
}

.pm_levelexpanded > .pm_levelthird {
  display: block;
  max-height: 1000px;
}

.pm_levelexpanded > a .pm_levelarrow,
.pm_levelexpanded .pm_levelarrow {
  transform: rotate(180deg);
}

.pm_levelthird a {
  color: #555;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s;
}

.pm_levelthird a:hover {
  color: #0d0d0d;
}

/* Nested dropdown styles */
.pm_levelthird .pm_levelthird {
  padding-left: 15px;
}

/* Form Styles */
#form-container-holder-for-sticky-part {
  background: #fff;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

#form-container-holder-for-sticky-part h5 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.contact-form {
  margin-top: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444;
}

.required {
  color: #e74c3c;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 14px;
}

.form-textarea {
  min-height: 100px;
}

.makeinoneline {
  display: flex;
  gap: 15px;
}

.makeinoneline .form-row {
  flex: 1;
}

.btn-submit {
  background-color: #0066cc;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #0055aa;
}

.privacy-text {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 10px;
}

/* Call to Action Button */
.calltoaction {
  display: inline-block;
  background-color: #0066cc;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.calltoaction:hover {
  background-color: #0055aa;
}

/* Material of Construction Section */
.moc-container {
  background-color: #f5f5f5;
  padding: 40px 0;
  margin-top: 40px;
}

.col-for-related-products h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  text-align: center;
}

.row-for-frst-block {
  margin-bottom: 30px;
}

.col-for-related-products h6 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}

.col-for-related-products ul {
  list-style: none;
  padding-left: 0;
}

.col-for-related-products ul li {
  margin-bottom: 8px;
}

.col-for-related-products ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.col-for-related-products ul li a:hover {
  color: #0066cc;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .makeinoneline {
    flex-direction: column;
    gap: 0;
  }
  
  .product-content-holder {
    padding-right: 15px;
  }
  
  h2.content-heading-h2 {
    font-size: 24px;
  }
  
  h3.content-heading-h3 {
    font-size: 20px;
  }

  .pm_levelthird {
    padding-left: 10px;
  }
}

/* Additional Styles */
.row-min-width {
  width: 800px;
}

.standard-container {
  width: 1350px;
  margin: auto;
}

img.product-page-image {
  width: 100%;
  margin-bottom: 20px;
}

.product-page-image {
  width: 100%;
  max-width: 865px;
  height: auto;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Remove default link underlines */
a {
  text-decoration: none !important;
}

/* Animation for dropdown arrows */
.pm_levelarrow {
  transition: transform 0.3s ease;
}

/* Active state for menu items */
.pm_levelexpanded > a {
  color: #080808;
}

.breadcrumb-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 200px 0px 70px;
    position: relative;
}

a {
    color: #080808;
    text-decoration: underline;
}