.main-content {
  background: var(--bg-color);
  padding: 40px 0;
}

.page-title {
  color: var(--primary-color);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 400;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

.content-wrapper {
  background: var(--white);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
  align-items: start;
  box-shadow: var(--shadow);
}

.section-title {
  color: var(--primary-color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: min(280px, 100%);
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 20px,
    #ffcc00 20px,
    #ffcc00 40px
  );
  margin-top: 8px;
}

.content-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 16px;
  color: var(--text-color);
}

.highlight-orange {
  color: var(--secondary-color);
  font-weight: 600;
}

.highlight-teal {
  color: var(--accent-color);
  font-weight: 600;
}

.image-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.road-image {
  width: 100%;
  height: 200px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.road-center-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--white) 0px,
    var(--white) 20px,
    transparent 20px,
    transparent 40px
  );
  transform: translateY(-50%);
}

.road-side-line {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
  transform: translateY(-50%);
}

.road-bottom-line {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
}

.products-section {
  background: var(--white);
  padding: 30px;
  margin-top: 30px;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

.products-title {
  color: var(--primary-color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
}

.products-title::after {
  content: "";
  display: block;
  width: min(280px, 100%);
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 20px,
    #ffcc00 20px,
    #ffcc00 40px
  );
  margin-top: 8px;
}

.products-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  color: var(--text-color);
}

.thermoplastics-section {
  background: var(--bg-color);
  padding: 40px 30px;
  margin-top: 30px;
  border-radius: var(--border-radius);
}

.thermoplastics-title {
  color: var(--primary-color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}

.thermoplastics-title::after {
  content: "";
  display: block;
  width: min(280px, 100%);
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 20px,
    #ffcc00 20px,
    #ffcc00 40px
  );
  margin-top: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: var(--white);
  padding: 20px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.product-image img {
  width: 150px;
  height: 180px;
  object-fit: contain;
  border-radius: 4px;
}

.product-name {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  text-align: left;
}

.coldplastics-section {
  background: var(--white);
  padding: 40px 30px;
  margin-top: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.coldplastics-title {
  color: var(--accent-color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}

.coldplastics-title::after {
  content: "";
  display: block;
  width: min(280px, 100%);
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 20px,
    #ffcc00 20px,
    #ffcc00 40px
  );
  margin-top: 8px;
}

.coldplastics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.coldplastic-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.coldplastic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 123, 128, 0.15);
}

.coldplastic-name {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.coldplastic-name::before {
  content: "❄";
  margin-right: 10px;
  font-size: 24px;
}

.coldplastic-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color);
  text-align: justify;
  margin-bottom: 15px;
}

.coldplastic-features {
  background: var(--white);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.coldplastic-features h4 {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.coldplastic-features ul {
  list-style: none;
  padding: 0;
}

.coldplastic-features li {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.coldplastic-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* New Cold Applied Paints and Primers Section Styles */
.cold-applied-section {
  background: var(--white);
  padding: 40px 30px;
  margin-top: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.cold-applied-title {
  color: var(--accent-color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}

.cold-applied-title::after {
  content: "";
  display: block;
  width: min(280px, 100%);
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 20px,
    #ffcc00 20px,
    #ffcc00 40px
  );
  margin-top: 8px;
}

.cold-applied-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.cold-applied-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.cold-applied-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 123, 128, 0.15);
}

.cold-applied-name {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cold-applied-image {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.cold-applied-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 4px;
}

.cold-applied-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  text-align: left;
}

.beads-section {
  background: var(--white);
  padding: 40px 30px;
  margin-top: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.beads-title {
  color: var(--accent-color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}

.beads-title::after {
  content: "";
  display: block;
  width: min(280px, 100%);
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 20px,
    #ffcc00 20px,
    #ffcc00 40px
  );
  margin-top: 8px;
}

.beads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.bead-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.bead-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 123, 128, 0.15);
}

.bead-name {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bead-image {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.bead-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 4px;
}

/* Existing responsive and accessibility styles (unchanged) */
@media (max-width: 768px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .section-title::after,
  .products-title::after,
  .thermoplastics-title::after,
  .coldplastics-title::after,
  .cold-applied-title::after,
  .beads-title::after {
    width: min(200px, 100%);
  }

  .road-image {
    height: 150px;
  }

  .products-section,
  .thermoplastics-section,
  .coldplastics-section,
  .cold-applied-section,
  .beads-section {
    padding: 20px;
  }

  .products-grid,
  .coldplastics-grid,
  .cold-applied-grid,
  .beads-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image img {
    width: 120px;
    height: 140px;
  }

  .coldplastics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .main-content {
    padding: 20px 0;
  }

  .content-wrapper,
  .products-section,
  .thermoplastics-section,
  .coldplastics-section,
  .cold-applied-section,
  .beads-section {
    padding: 15px;
  }

  .page-title {
    margin-bottom: 20px;
    padding-left: 15px;
  }
}

@media print {
  .road-image,
  .product-image,
  .cold-applied-image,
  .bead-image {
    break-inside: avoid;
  }

  .product-card,
  .coldplastic-card,
  .cold-applied-card,
  .bead-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .coldplastic-card,
  .cold-applied-card,
  .bead-card {
    transition: none;
  }

  .product-card:hover,
  .coldplastic-card:hover,
  .cold-applied-card:hover,
  .bead-card:hover {
    transform: none;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

.product-card:focus-within,
.coldplastic-card:focus-within,
.cold-applied-card:focus-within,
.bead-card:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
