 #site-header-wrap.header-layout5 .site-header-top .header-top-inner .site-branding img {
    max-height: 59px !important;
  }
  
  #pagetitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.spec-table-wrapper {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 15px;
}

.spec-table thead th {
  background-color: #003e6f; /* theme color */
  color: #ffffff;
  padding: 12px;
  text-align: left;
}

.spec-table td {
  border: 1px solid #ddd;
  padding: 12px;
}

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

@media (max-width: 768px) {
  .spec-table {
    font-size: 14px;
  }
}


.product-documents-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 600px) {
    .product-documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.document-card {
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    background-color: #fff;
}

.document-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.document-thumbnail {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.document-thumbnail:hover {
    transform: scale(1.03);
}

.download-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 8px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #f76f0e;
	  color: #fff !important;
}

.faq-css-accordion .faq-item {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-css-accordion .faq-toggle {
    display: none;
}

.faq-css-accordion .faq-question {
    display: block;
    background-color: #003e6f; /* theme blue */
    color: #fff;
    padding: 14px 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-css-accordion .faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: bold;
}

.faq-css-accordion .faq-toggle:checked + .faq-question::after {
    content: '–';
}

.faq-css-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    background-color: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-css-accordion .faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 800px;
    padding: 16px;
}

.single-product #primary div.product .woocommerce-tabs {
    margin-bottom: 50px;
}
.why-choose-namah-section {
  margin: 50px 0 90px 0;
  padding: 20px 0;
  background-color: #f3f3f3;
  border-top: 1px solid #ddd;
}

.why-choose-title {
  font-size: 24px;
  color: #003e6f;
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-content ul {
  list-style: disc;
  padding-left: 20px;
}

.why-choose-content li {
  margin-bottom: 8px;
}

