/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff6b35;
  color: white;
}

.btn-primary:hover {
  background-color: #e55a2b;
}

.btn-outline {
  background-color: transparent;
  color: #333;
  border: 2px solid #ddd;
}

.btn-outline:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.btn-dark {
  background-color: #000;
  color: white;
}

.btn-dark:hover {
  background-color: #333;
}

/* Top Banner */
.top-banner {
  background-color: #ff6b35;
  color: white;
  padding: 8px 0;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}

.scrolling-text {
  animation: scroll 60s linear infinite;
  display: inline-block;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scroll-gap {
    display: inline-block;
    width: 60px;   /* Adjust for your preferred gap */
}

/* Header */
.header {
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
  margin-left: 32px;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.nav-link.active {
  background-color: #ff6b35;
  color: white;
}

.nav-link:hover {
  color: #333;
}

/* Hero Section */
.hero {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* FAQ Section Styles */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
    text-align: left;
    padding: 24px 24px 24px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111827;
    font-weight: 600;
}

.faq-toggle-icon {
    transition: transform 0.3s;
    margin-left: 8px;
    color: #ff6b35;
    font-size: 1.4em;
}

.faq-toggle-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 0 0 0 0;
}

.faq-item .faq-answer p {
    padding: 0 24px 24px 0;
    margin: 0;
}

.faq-item.active,
.faq-question:focus {
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

/* Optional: mobile tweaks */
@media (max-width: 600px) {
    .faq-question {
        font-size: 18px;
        padding: 18px 18px 18px 0;
    }
    .faq-list {
        max-width: 100%;
    }
}


.trustpilot {
  margin-bottom: 32px;
}

.trustpilot-brand {
  color: #00b67a;
  font-weight: 600;
  margin-bottom: 8px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.stars i {
  color: #00b67a;
  font-size: 16px;
}

.trustpilot-score {
  font-size: 14px;
  color: #666;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight {
  background-color: #ff6b35;
  color: white;
  padding: 8px 16px;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* Image Banner */
.image-banner {
  position: relative;
  height: 500px;
  width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.banner-images {
  height: 600%;
  animation: scroll-banner 24s infinite ease-in-out;
}

.banner-image {
  height: 500px;
  width: 500px;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.banner-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
}

@keyframes scroll-banner {
  0%,
  16.66% {
    transform: translateY(0%);
  }
  16.67%,
  33.33% {
    transform: translateY(-16.67%);
  }
  33.34%,
  50% {
    transform: translateY(-33.33%);
  }
  50.01%,
  66.66% {
    transform: translateY(-50%);
  }
  66.67%,
  83.33% {
    transform: translateY(-66.67%);
  }
  83.34%,
  100% {
    transform: translateY(-83.33%);
  }
}

/* Products Section */
.products {
    padding: 64px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #111827;
    margin-bottom: 48px;
    line-height: 1.2;
}

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

.product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-description {
    flex-grow: 1;
}
.product-arrow {
    margin-top: auto;
    display: flex;
    justify-content: center;
    color: #9ca3af;
    transform: rotate(90deg);
}


.product-card {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    min-height: 410px; /* Adjust as needed */
    height: 100%;
    /* ...keep other existing styles */
}

/* If you want, you can also set a max-height to prevent huge cards, but usually min-height suffices. */


.product-icon {
    width: 48px;
    height: 48px;
    background-color: #f97316;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-icon-img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.product-icon-img img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.product-title {
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.product-price {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.product-arrow {
    display: flex;
    justify-content: center;
    color: #9ca3af;
    transform: rotate(90deg);
}

/* Crafting Section */
.crafting {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.crafting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.crafting-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.3;
}

.crafting-description {
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.video-placeholder {
  background-color: #ff6b35;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-placeholder i {
  color: white;
  font-size: 64px;
}

.video-duration {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: white;
  font-size: 14px;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background-color: white;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.rating-text {
  font-size: 24px;
  font-weight: bold;
}

.rating-count {
  color: #666;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.review-card {
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars i {
  color: #00b67a;
  font-size: 14px;
}

.verified {
  color: #00b67a;
  font-size: 12px;
  margin-left: 8px;
}

.review-title {
  font-weight: 600;
	color: #000000;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.review-author {
  font-size: 12px;
  color: #999;
}

.reviews-cta {
  text-align: center;
}

/* Customers Section */
.customers {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: white;
}

.customers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.customers-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 32px;
}

.customer-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.customer-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid #666;
  border-radius: 8px;
  background-color: transparent;
  color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: left;
}

.customer-tab.active {
  border-color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.1);
  color: white;
}

.customer-tab:hover {
  border-color: #999;
}

.customer-showcase {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.customer-image-set {
  display: none;
  position: absolute;
  inset: 0;
}

.customer-image-set.active {
  display: block;
}

.customer-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.customer-image.active {
  opacity: 1;
}

.customer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 32px;
}

.quote-mark {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
}

.author-role {
  color: #ccc;
}

/* News Section */
.news {
  padding: 80px 0;
  background-color: white;
}

.news-header {
  text-align: center;
  margin-bottom: 48px;
}

.news-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.news-card {
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 24px;
}

.news-category {
  margin-bottom: 12px;
}

.category-tag {
  display: inline-block;
  background-color: #f3f4f6;
  color: #666;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 4px;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.4;
  color: black;
}

.news-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.author-avatar-img {
    width: 24px;
    height: auto;
    border-radius: 50%; /* optional, for circular avatar */
    object-fit: cover;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
}


.news-cta {
  text-align: center;
}

/* Partners Section */
.partners {
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.partners-scroll {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.partners-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.partners-row.fast {
  animation: scroll-partners 20s linear infinite;
}

.partners-row.medium {
  animation: scroll-partners 25s linear infinite;
}

.partners-row.slow {
  animation: scroll-partners 30s linear infinite;
}

.partner-logo {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-logo img {
  height: 48px;
  width: auto;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Education Section */
.education {
  padding: 80px 0;
  background-color: #ff6b35;
  color: white;
  text-align: center;
}

.education-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

.highlight-white {
  background-color: white;
  color: #ff6b35;
  padding: 8px 16px;
  display: inline-block;
}

.education-description {
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-circle {
  width: 64px;
  height: 64px;
  background-color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-circle span {
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  margin: 32px 0 24px;
}

.contact-email a {
    color: #fff;
    text-decoration: underline; /* Optional: keep or remove as you wish */
}

.contact-email a:hover {
    color: #ff6b35; /* Optional: hover color for effect */
}
.contact-phone {
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 32px;
}

.copyright {
  color: #666;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    position: relative;
  }

  .hero-content,
  .crafting-content,
  .customers-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .image-banner {
    width: 100%;
    height: 300px;
  }

  .banner-image {
    width: 100%;
    height: 300px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.products-section {
    padding: 60px 0;
    background: #fafbfc;
}
.products-section .products-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}
.product-card:hover {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.13);
}
.product-image {
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 10px;
}
.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-description {
    color: #646c7b;
    margin-bottom: 18px;
    font-size: 1rem;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0176d3;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}
.contact-btn:hover {
    background: #015a99;
    color: #fff;
}
/* Hamburger button style */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #ff6b35;
  cursor: pointer;
  margin-left: 12px;
}



/* FAQ Section */
.faq {
    padding: 80px 0 80px 0;
    background: #fff;
}

.faq .container {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 16px;
}

.products-section .faq .section-title {
    font-size: 36px;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    width: 100%;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.faq-item.active, .faq-item:hover {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.11);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 28px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    text-align: left;
}

.faq-toggle-icon {
    color: #ff6b35;
    font-size: 1.4em;
    margin-left: 12px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.faq-toggle-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafbfc;
    color: #333;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 0 24px;
    font-size: 17px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 600px; /* Adjust if you have very long answers */
}

.faq-answer p {
    margin: 0;
}

/* Make links in answers match your brand color and style */
.faq-answer a {
    color: #ff6b35;
    text-decoration: underline;
    transition: color 0.2s;
}

.faq-answer a:hover {
    color: #e55a2b;
}

/* Responsive Design */
@media (max-width: 700px) {
    .faq .container {
        max-width: 100%;
        padding: 0 8px;
    }
    .faq-question {
        font-size: 17px;
        padding: 18px 12px;
    }
    .faq-answer, .faq-item.active .faq-answer {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.tabs { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn { background: #fff; border: 2px solid #eee; border-radius: 4px; padding: 10px 22px; font-size: 1.1rem; cursor: pointer; }
.tab-btn.active, .tab-btn:focus { background: #ff6600; color: #fff; border-color: #ff6600; }
.subtabs { display: flex; gap: 12px; margin-bottom: 28px; }
.subtab-btn { background: #fff; border: 2px solid #eee; border-radius: 4px; padding: 8px 18px; font-size: 1rem; cursor: pointer; }
.subtab-btn.active, .subtab-btn:focus { background: #ff6600; color: #fff; border-color: #ff6600; }

/* Responsive navigation */
@media (max-width: 768px) {
  .header-content {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }
  .nav {
    display: none;       /* hide nav by default on mobile */
    position: absolute;
    top: 64px;           /* adjust as needed for your header */
    left: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1000;
    margin-left: 0;      /* override the desktop margin */
    justify-content: flex-start;
  }
  .nav.open {
    display: flex;      /* show nav when .open is added */
  }
  .nav-link {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
  }
}

.how-to-buy-section {
  padding: 64px 0 32px 0;
  background: #fff;
}
.how-to-buy-flex {
  display: flex;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.how-to-buy-main {
  flex: 2;
  min-width: 320px;
  max-width: 700px;
}
.how-to-buy-main h1 {
  font-size: 2.3em;
  margin-bottom: 20px;
  font-weight: 700;
}
.how-to-buy-main h2 {
  font-size: 1.38em;
  margin-top: 42px;
  margin-bottom: 20px;
}
.how-to-buy-main p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 18px;
}
.how-to-buy-steps {
  flex: 1.3;
  min-width: 290px;
  max-width: 440px;
  margin-top: 0;
}
.steps-title {
  color: #ff6b35;
  font-size: 1.15em;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}
.steps-time {
  font-size: 1em;
  margin-bottom: 22px;
  color: #444;
}
.steps-list .step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 18px;
}
.step-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  object-fit: contain;
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.step-text {
  font-size: 1em;
  color: #222;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 4px;
}
.how-to-buy-map-container {
  margin: 48px auto 0 auto;
  max-width: 1100px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  padding: 16px 0 0 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.how-to-buy-map-container small {
  display: block;
  text-align: right;
  margin: 6px 10px 0 0;
  color: #888;
}

/* Make note full width and visually prominent */
.how-to-buy-note {
  background: #fafafa;
  border-left: 4px solid #ff6b35;
  padding: 18px 24px;
  font-size: 1.07em;
  margin: 30px 0 0 0;
  border-radius: 8px;
  color: #5d5d5d;
  max-width: 100%;
  box-sizing: border-box;
}

/* Responsive improvements and Firefox fix */
@media (max-width: 1100px) {
  .how-to-buy-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .how-to-buy-map-container {
    max-width: 100vw;
  }
}
@media (max-width: 700px) {
  .how-to-buy-section {
    padding: 22px 0 18px 0;
  }
  .how-to-buy-main h1 {
    font-size: 1.25em;
  }
  .how-to-buy-main h2 {
    font-size: 1.05em;
  }
  .how-to-buy-steps {
    max-width: 100%;
    min-width: unset;
  }
  .step-icon {
    width: 34px; min-width: 34px; height: 34px;
  }
}


.help-choose-section {
  background: #fff;
  padding: 64px 0 32px 0;
}

.help-choose-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

.help-choose-title {
  font-size: 2.5em;
  color: #ff6b35;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.help-choose-text {
  text-align: center;
  margin-bottom: 34px;
  font-size: 1.16em;
  color: #333;
}

.help-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  margin-bottom: 34px;
}

.help-choose-card {
  background: #faf8f7;
  border: 1.5px solid #ff6b35;
  border-radius: 18px;
  flex: 1 1 340px;
  max-width: 370px;
  min-width: 260px;
  padding: 30px 24px 24px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.help-choose-card h2 {
  color: #ff6b35;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 14px;
}

.help-choose-card ul {
  padding-left: 18px;
  color: #222;
  font-size: 1.03em;
  line-height: 1.7;
  margin: 0;
}

.help-choose-card li {
  margin-bottom: 8px;
}

.help-choose-bottom {
  text-align: center;
  margin-top: 18px;
  font-size: 1.13em;
}

.help-choose-bottom .contact-link {
  color: #ff6b35;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .help-choose-grid { flex-direction: column; gap: 22px; }
  .help-choose-card { max-width: 100%; }
  .help-choose-title { font-size: 1.7em; }
}

.pro-card-section {
  background: #fafbfc;
  padding: 56px 0 34px 0;
}
.pro-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
}
.pro-card {
  background: #fff;
  border: 1.5px solid #f2f2f2;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  flex: 1 1 330px;
  max-width: 370px;
  min-width: 260px;
  padding: 22px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pro-card:hover {
  box-shadow: 0 6px 28px rgba(255,107,53,0.13), 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-3px) scale(1.012);
}
.pro-card-img {
  width: 100%;
  max-width: 130px;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pro-card-header {
  width: 100%;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro-card-title {
  font-size: 1.15em;
  font-weight: 700;
  text-align: center;
  color: #252525;
  margin-bottom: 5px;
}
.pro-card-badge {
  font-size: 0.99em;
  padding: 5px 16px;
  border-radius: 6px;
  background: #ffe6dc;
  color: #ff6b35;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  margin-bottom: 6px;
}
.pro-card-badge.low { background: #fff2e7; color: #ff6b35; }
.pro-card-badge.lowmed { background: #fff6ed; color: #ff9c30; }
.pro-card-badge.med { background: #fff4ed; color: #ff924f; }
.pro-card-badge.medhigh { background: #fff2e7; color: #ff8847; }
.pro-card-badge.high { background: #ffe3d5; color: #fd5e17; }
.pro-card-badge.veryhigh { background: #ffe0db; color: #e53900; }

.pro-card-attenuation {
  margin-bottom: 14px;
  width: 100%;
}
.pro-card-att-title {
  font-size: 1.09em;
  color: #606060;
  margin-bottom: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pro-card-att-chart {
  width: 100%;
  height: 82px;
  object-fit: contain;
  margin-bottom: 2px;
  border-radius: 4px;
  background: #fff;
}
.pro-card-suitable-title {
  font-size: 1.09em;
  color: #444;
  margin-bottom: 4px;
  font-weight: 500;
}
.pro-card-suitable ul {
  margin: 0 0 10px 0;
  padding: 0 0 0 18px;
}
.pro-card-suitable li {
  font-size: 1.05em;
  color: #232323;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}
.checkmark {
  display: inline-block;
  margin-right: 8px;
  width: 1.25em;
  height: 1.25em;
  background: none;
  border-radius: 50%;
  border: 2.3px solid #ff6b35;
  position: relative;
}
.checkmark:after {
  content: "";
  position: absolute;
  left: 0.32em;
  top: 0.14em;
  width: 0.42em;
  height: 0.8em;
  border-right: 2.5px solid #ff6b35;
  border-bottom: 2.5px solid #ff6b35;
  transform: rotate(35deg);
}

.pro-card-btn {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  background: #ff6b35;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 14px 0;
  font-size: 1.12em;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(255,107,53,0.09);
  text-decoration: none;
}
.pro-card-btn:hover {
  background: #e64b0f;
  color: #fff;
}

/* Below-card info section */
.help-choose-info {
  background: #fff;
  padding: 42px 0 32px 0;
}
.help-choose-info-title {
  color: #ff6b35;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.help-choose-info-desc {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
  font-size: 1.08em;
}
.help-choose-filter-table {
  overflow-x: auto;
  max-width: 700px;
  margin: 0 auto 18px auto;
  border-radius: 8px;
}
.help-choose-filter-table table {
  width: 100%;
  border-collapse: collapse;
  background: #f7f7f7;
  font-size: 1em;
}
.help-choose-filter-table th,
.help-choose-filter-table td {
  padding: 11px 10px;
  border: 1.5px solid #ececec;
  text-align: left;
}
.help-choose-filter-table th {
  background: #ff6b35;
  color: #fff;
  font-weight: 700;
  font-size: 1.04em;
}
.help-choose-disclaimer {
  text-align: center;
  color: #888;
  font-size: 1em;
}

@media (max-width: 1150px) {
  .pro-card-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .pro-card {
    max-width: 49%;
  }
}
@media (max-width: 700px) {
  .pro-card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .pro-card {
    max-width: 100%;
  }
  .help-choose-info-title { font-size: 1.14em; }
}

.contact-section {
  background: #fff;
  padding: 60px 0 40px 0;
}
.contact-flex {
  display: flex;
  gap: 52px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-info {
  flex: 1.1;
  min-width: 290px;
  max-width: 420px;
}
.contact-title {
  color: #ff6b35;
  font-size: 2.3em;
  font-weight: 700;
  margin-bottom: 22px;
}
.contact-address,
.contact-hours {
  margin-bottom: 20px;
  color: #262626;
  font-size: 1.07em;
  line-height: 1.7;
}
.contact-communication {
  margin-bottom: 10px;
}
.contact-communication b {
  color: #ff6b35;
}
.contact-communication a {
  color: #222;
  text-decoration: underline;
}
.contact-map {
  flex: 1.2;
  min-width: 310px;
  max-width: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 950px) {
  .contact-flex {
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }
  .contact-map { max-width: 100%; }
}

@media (max-width: 600px) {
  .contact-section { padding: 28px 0 22px 0; }
  .contact-title { font-size: 1.38em; }
  .contact-map iframe { min-height: 200px; }
}

.compliance-section {
  background: #fff;
  padding: 56px 0 38px 0;
}
.compliance-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.compliance-title {
  color: #ff6b35;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.01em;
}
.compliance-content {
  background: #f9f8f7;
  border-radius: 16px;
  padding: 40px 28px 32px 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  font-size: 1.14em;
  color: #232323;
  line-height: 1.7;
}
.compliance-content h2 {
  color: #ff6b35;
  font-size: 1.14em;
  font-weight: 700;
  margin-top: 34px;
  margin-bottom: 14px;
}
.compliance-content ul {
  margin: 0 0 15px 0;
  padding-left: 22px;
}
.compliance-content li {
  margin-bottom: 12px;
}
.compliance-content a {
  color: #ff6b35 !important;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.14s;
}
.compliance-content a:hover {
  color: #e55216 !important;
}
.compliance-doc-list {
  margin-bottom: 14px;
}
.pdf-tag {
  background: #ff6b35;
  color: #fff;
  font-size: 0.97em;
  border-radius: 5px;
  padding: 2px 7px;
  margin-left: 7px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .compliance-title { font-size: 1.22em; }
  .compliance-content { padding: 18px 7px 14px 7px; }
}

.partners-more-section {
  background: #fafbfc;
  padding: 48px 0 36px 0;
}
.partners-more-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  color: #232323;
  font-size: 1.13em;
  line-height: 1.7;
}
.partners-subtitle {
  color: #ff6b35;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
}
.partners-contact-title {
  color: #444;
  font-size: 1.1em;
  font-weight: 600;
  margin: 22px 0 6px 0;
}
.partners-contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.partners-contact-list li {
  margin-bottom: 6px;
}
.partners-contact-list a {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 600px) {
  .partners-more-container { font-size: 1em; }
}

.partners-cards-section {
  background: #fff;
  padding: 48px 0 36px 0;
}
.partners-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.partner-card-v2 {
  background: #fff;
  border: 1.5px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-height: 400px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.partner-card-v2:hover {
  box-shadow: 0 8px 32px rgba(255,107,53,0.08), 0 2px 12px rgba(0,0,0,0.07);
  transform: translateY(-4px) scale(1.012);
}
.partner-card-v2-img-wrap {
  width: 100%;
  height: 170px;
  background: #f9f9f9;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-card-v2-img {
  max-width: 98%;
  max-height: 90%;
  object-fit: contain;
}
.partner-card-v2-content {
  padding: 18px 22px 20px 22px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.partner-card-v2-title {
  font-size: 1.09em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #232323;
}
.partner-card-v2-text {
  color: #232323;
  font-size: 1.02em;
  line-height: 1.6;
  margin-bottom: 22px;
}
.partner-card-v2-link {
  color: #ff6b35;
  font-weight: 700;
  font-size: 1.04em;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s;
}
.partner-card-v2-link span {
  margin-left: 4px;
  font-size: 1.13em;
  transition: margin-left 0.15s;
}
.partner-card-v2-link:hover {
  color: #e34a10;
}
.partner-card-v2-link:hover span {
  margin-left: 10px;
}

@media (max-width: 1000px) {
  .partners-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .partners-cards-section { padding: 22px 0 14px 0; }
  .partners-cards-grid { gap: 12px; }
  .partner-card-v2-content { padding: 13px 8px 14px 8px; }
  .partner-card-v2-img-wrap { height: 120px; }
}

.partners-intro-highlight {
  background: linear-gradient(90deg, #fff 75%, #fff6f1 100%);
  padding: 72px 0 32px 0;
}

.partners-intro-content {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(255,107,53,0.05), 0 1.5px 8px rgba(0,0,0,0.06);
  padding: 48px 32px 34px 32px;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.partners-intro-accent {
  width: 68px;
  height: 7px;
  background: linear-gradient(90deg, #ff6b35 65%, #ffe4d3 100%);
  border-radius: 7px;
  margin: 0 auto 26px auto;
}

.partners-title {
  font-size: 2.6em;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.partners-content {
  font-size: 1.18em;
  color: #222;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
}

.partners-content a {
  color: #ff6b35;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .partners-intro-content { padding: 26px 8px 16px 8px; }
  .partners-title { font-size: 1.28em; }
  .partners-intro-highlight { padding: 32px 0 14px 0; }
  .partners-intro-accent { margin-bottom: 18px; }
}

.about-section {
  background: #fff;
  padding: 70px 0 40px 0;
}
.about-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}
.about-intro-accent {
  width: 64px;
  height: 7px;
  background: linear-gradient(90deg, #ff6b35 65%, #ffe4d3 100%);
  border-radius: 7px;
  margin: 0 auto 28px auto;
}
.about-title {
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.about-content {
  font-size: 1.15em;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 44px auto;
  text-align: center;
}
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.about-card {
  background: #fafafa;
  border: 1.5px solid #ececec;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px 22px 18px;
  min-height: 240px;
  text-align: center;
  transition: box-shadow 0.16s, transform 0.16s;
}
.about-card:hover {
  box-shadow: 0 8px 32px rgba(255,107,53,0.11), 0 2px 10px rgba(0,0,0,0.08);
  transform: translateY(-2px) scale(1.015);
}
.about-card-icon {
  margin-bottom: 14px;
}
.about-card-title {
  font-size: 1.13em;
  font-weight: 700;
  margin-bottom: 7px;
  color: #232323;
}
.about-card-desc {
  color: #232323;
  font-size: 1.05em;
}
@media (max-width: 700px) {
  .about-section { padding: 34px 0 16px 0; }
  .about-title { font-size: 1.22em; }
  .about-content { font-size: 1em; }
  .about-cards-grid { gap: 13px; }
  .about-card { padding: 17px 7px 12px 7px; min-height: 170px; }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-product-image {
  width: 100%;
  border-radius: 12px;
}
.thumbnail-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #ddd;
  transition: border 0.3s;
  object-fit: cover;
}
.thumbnail.active {
  border: 2px solid #ff6b35;
}

.tab-btn {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 1.1rem;
  cursor: pointer;
  margin-right: 12px;
}
.tab-btn.active {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}
.tab-content {
  display: none;
  margin-bottom: 40px;
}
.tab-content.active {
  display: block;
}

/* More Info Button Styling for Product Cards */
.more-info-btn {
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: #ff6b35;
    color: white;
    text-align: center;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
    cursor: pointer;
}

.more-info-btn:hover {
    background-color: #e55a2b;
}

/* Ensure no text decorations on product cards */
.product-card, .product-card *, .product-card a {
    text-decoration: none;
    color: inherit;
}

/* Ensure More Info button text remains white */
.more-info-btn {
    color: white !important;
}

/* Fix text and icon colors inside product cards */
.product-card, 
.product-card *, 
.product-card a, 
.product-card a:visited, 
.product-card a:hover {
    color: #111827;
    text-decoration: none;
}

/* Optional: force icon colors to match white on orange or neutral */
.product-icon svg,
.product-icon-img img,
.product-arrow svg {
    color: white;
    fill: white;
    stroke: white;
}

/* Ensuring arrow stays grey */
.product-arrow svg {
    color: #9ca3af;
    fill: none;
    stroke: #9ca3af;
}

/* Fix product card links styling */
.product-card,
.product-card *,
.product-card a,
.product-card a:visited,
.product-card a:hover,
.product-card a:focus {
    text-decoration: none;
    color: #111827; /* consistent dark grey text */
}

/* Icons inside product cards */
.product-icon,
.product-icon svg,
.product-icon-img img {
    color: white;
    fill: white;
    stroke: white;
}

/* Keep product-arrow in grey */
.product-arrow svg {
    color: #9ca3af;
    fill: none;
    stroke: #9ca3af;
}

/* --- About page: contain oversized images without affecting other pages --- */
.about-section img,
.about-content img,
.about-card img {
  max-width: 100%;
  height: auto;
}

.about-card-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}

/* Ensure any figures in About content don't overflow */
.about-content figure,
.about-content .wp-block-image,
.about-content .image,
.about-content .media,
.about-content .gallery {
  max-width: 100%;
  overflow: hidden;
}

.about-content iframe,
.about-content video {
  max-width: 100%;
}

/* Defensive: reset any inline widths on images within About */
.about-content img[style*="width"],
.about-content img[width] {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}


/* --- v4: Strong, page-scoped media constraints for About page --- */
.about-section,
.about-container,
.about-content {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure any element inside About doesn't force horizontal overflow */
.about-section * {
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Hard-limit all media to container width on About */
.about-section img,
.about-section picture img,
.about-section video,
.about-section iframe,
.about-section svg {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}

/* Common card/media areas on About */
.about-card img,
.about-card picture img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

/* Neutralize any inline width/height attributes within About */
.about-section img[width],
.about-section img[height],
.about-section img[style*="width"],
.about-section img[style*="height"] {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
}

/* If any About images are meant as icons, give them a cap */
.about-card-icon img {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
  margin: 0 auto 8px auto;
}

/* Safety: reset figure/galleries in About */
.about-section figure,
.about-section .wp-block-image,
.about-section .image,
.about-section .media,
.about-section .gallery {
  max-width: 100% !important;
  overflow: hidden;
}


/* --- v5: Safe global baseline for images (prevents overflow everywhere) --- */
img, picture img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

/* Keep existing sized components intact (they already use more specific selectors) */
/* Examples already in your CSS:
   .product-image { max-width: 120px; height: 120px; }
   .banner-image img { width: 100%; height: 100%; object-fit: cover; }
   These will override the baseline due to higher specificity.
*/

/* ===== About page layout (matching about.html classes) ===== */
.about-hero {
  background: #fff;
  padding: 72px 0 24px 0;
}
.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}
.about-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .about-hero-title { font-size: 32px; }
}
.accent-orange { color: #ff6b35; }

.about-hero-desc {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin: 0 auto 20px auto;
  max-width: 760px;
}

.about-hero-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.about-hero-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Block section */
.about-block {
  background: #fff;
  padding: 28px 0 70px 0;
}
.about-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}
.about-block-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 24px auto 32px auto;
  line-height: 1.2;
  max-width: 900px;
}
@media (max-width: 700px) {
  .about-block-title { font-size: 24px; }
}

/* Feature rows (image/text pairs) */
.about-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin: 28px 0;
}
.about-feature-row-reverse {
  direction: rtl; /* cheap flip for grid items */
}
.about-feature-row-reverse > * { direction: ltr; }

.about-feature-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.about-feature-txt h3 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}
.about-feature-txt p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .about-feature-row {
    grid-template-columns: 1fr;
  }
  .about-feature-row-reverse {
    direction: ltr;
  }
}

/* Global presence block */
.about-global {
  margin-top: 36px;
  text-align: center;
}
.about-global-title {
  margin-top: 8px;
}
.about-global-desc {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 20px auto;
}
.about-global-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

/* Hard clamp any image inside About main blocks just in case */
.about-hero img,
.about-block img {
  max-width: 100%;
  height: auto;
}

/* Fix: ensure no element inside About causes horizontal overflow */
.about-hero *, .about-block * {
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}
