.dual-paragraphs {
  display: flex;
  justify-content: center;
  text-align: left;
  margin-bottom: 30px;
}

.dual-paragraphs p {
  flex: 1; /* Allows each paragraph to take equal space */
  margin: 0 10px;
  text-align: justify;
  max-width: 405px;
  margin-bottom: 20px;
}

.images-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adds space between images */
  margin-top: 20px;
}

.images-row img {
  display: block; /* Ensures images are properly aligned */
}

@media screen and (max-width: 600px) {
  .dual-paragraphs {
    flex-direction: column;
    align-items: center;
  }

  .dual-paragraphs p {
    margin: 10px 0; /* Adds vertical spacing when stacked */
  }
}

/* SUPPORT SECTION */
.supports-section {
  margin-bottom: 100px;
}

.supports-section h1 {
  text-align: center;
  margin-bottom: 40px;
}

.company-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.company-logos div {
  width: 100px; /* Adjust based on your preference */
  height: 100px; /* Adjust the height to fit your design */
  flex: 1 1 auto; /* Adjusts basis automatically */
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .company-logos div {
    flex-basis: calc(33.333% - 20px); /* 3 images per row, considering gap */
  }
}

@media (max-width: 600px) {
  .company-logos div {
    flex-basis: calc(50% - 20px); /* 2 images per row, considering gap */
    margin-bottom: 30px;
  }
}

.products-section-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 45px 20px;
}

.products-section h1 {
  font-size: 30px;
  font-weight: 500;
  max-width: 550px;
  text-align: center;
  margin: 32px auto;
}

.products-card {
  min-width: 500px;
  position: relative;
}

.products-card h1 {
  margin-top: 40px;
}

#products-card-heading-brake {
  height: 29px;
}

@media screen and (max-width: 450px) {
  #products-card-heading-brake {
    height: 29px;
  }
}

.products-card a {
  color: inherit; /* Prevent default link color */
  text-decoration: none; /* Remove underline from links */
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-card img {
  width: 550px;
  height: 370px;
  border-radius: 3px;
  border-bottom: 4px solid #e4b037;
}

@media screen and (max-width: 1034px) {
  .products-card img {
    width: 600px;
    height: 400px;
  }
}

@media screen and (max-width: 625px) {
  .products-card {
    flex-basis: 100%;
    min-width: unset;
  }

  .products-card img {
    width: 95%;
    height: 300px;
  }
}

@media screen and (max-width: 580px) {
  .supports-section {
    margin-bottom: 50px;
  }

  .products-section h1 {
    font-size: 30px;
    font-weight: bold;
  }
}

.featured-product {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.product-image {
  max-width: 500px;
}

.product-image img {
  width: 100%; /* Ensure the image is responsive within its container */
  height: auto; /* Maintain aspect ratio */
}

.product-description {
  flex-grow: 1;
  max-width: 600px;
  padding: 0 15px;
}

.product-description h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 35px;
  margin-left: 0;
  text-align: left;
  border-bottom: 3px solid #e4b037;
  padding-bottom: 10px;
}

.product-description h2 {
  margin-top: 0;
  font-size: 23px;
  font-weight: 400;
  text-align: left;
}

.product-description p {
  margin-bottom: 30px;
  text-align: justify;
}

.bottom-info {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Positions the content to the bottom-right */
  gap: 10px; /* Space between text and image */
}

@media screen and (max-width: 1030px) {
  .featured-product {
    flex-direction: column;
    text-align: center;
  }
}
