body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* General styling */
/* Full-width background container */
.full-width-background-bulk-transport {
  background-color: #f7f7f7; /* Light grey background */
  width: 100%; /* Ensures background spans the full width */
  padding: 40px 0; /* Adds vertical padding */
}

/* Original bulk-transport styling */
.bulk-transport {
  font-family: "Roboto", sans-serif; /* Modern, clean font */
  margin: 40px auto;
  color: #333;
  padding: 40px;
  border-radius: 10px; /* Rounded corners for a smooth feel */
  max-width: 1200px;
  background-color: transparent; /* No background color here */
}

.section-title h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Transport Options Styling */
.transport-options {
  margin-top: 40px;
}

.transport-options h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.transport-box {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 20px;
}

.transport-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow */
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .transport-item:hover {
    transform: translateY(calc(var(--lift-sm, 4px) * -1));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.transport-item h4 {
  color: #333;
  font-size: 1.3rem;
  margin-top: 15px;
}

.transport-item ul {
  list-style-type: none;
  padding: 0;
}

.transport-item ul li {
  margin: 8px 0;
  font-size: 1.1rem;
  color: #666;
}

.transport-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  color: #2c64ad;
}

.transport-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Service Offer Styling */
.service-offer {
  margin-top: 40px;
  text-align: center;
}

.service-offer h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
}

.service-offer p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 15px;
}

/* Bowser Rentals Styling */

.bowser-rentals {
  font-family: "Roboto", sans-serif; /* Modern, clean font */
  margin: 40px auto;
  color: #333;
  padding: 40px;
  border-radius: 10px; /* Rounded corners for a smooth feel */
  max-width: 1200px;
  background-color: transparent; /* No background color here */
}

.bowser-rentals h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.bowser-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bowser-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .bowser-item:hover {
    transform: translateY(calc(var(--lift-sm, 4px) * -1));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.bowser-item h4 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 15px;
}

.bowser-item p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

.bowser-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  color: #2c64ad;
}

.bowser-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storage-option .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  color: #2c64ad;
}

.storage-option .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Storage Option Styling */
.storage-option {
  margin-top: 40px;
  text-align: center;
}

.storage-option h3 {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
}

.storage-option p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 15px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .transport-box {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Two items per row for tablets and larger mobile screens */
  }

  .bowser-boxes {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Two items per row for tablets and larger mobile screens */
  }
}

@media screen and (max-width: 880px) {
  .transport-box {
    grid-template-columns: repeat(
      1,
      1fr
    ); /* Two items per row for tablets and larger mobile screens */
  }

  .bowser-boxes {
    grid-template-columns: repeat(
      1,
      1fr
    ); /* Two items per row for tablets and larger mobile screens */
  }
}

@media screen and (max-width: 768px) {
  /* Stacking items vertically for smaller screens */
  .transport-box {
    grid-template-columns: 1fr; /* Full width for each item */
  }

  .bowser-boxes {
    grid-template-columns: 1fr; /* Two items per row on smaller screens */
  }

  .service-box {
    grid-template-columns: 1fr 1fr; /* Stack items in two columns */
  }

  .service-item {
    width: 100%;
  }

  .diversity-box {
    flex-direction: column; /* Stack icon and text on top of each other on mobile */
    text-align: center;
  }

  .diversity-box .icon {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .section-title h2 {
    font-size: 1.6rem; /* Adjusted for small screens */
  }

  .section-title p {
    font-size: 1rem; /* Slightly smaller for better readability on mobile */
  }

  .transport-options h3,
  .bowser-rentals h3,
  .storage-option h3 {
    font-size: 1.3rem; /* Slightly smaller titles for mobile */
  }

  .transport-item h4,
  .bowser-item h4 {
    font-size: 1.1rem; /* Make item headings more readable */
  }

  .transport-item ul li,
  .bowser-item p {
    font-size: 1rem; /* Slightly smaller font for better mobile viewing */
  }
}

/* Border clearing styles for content section */
.full-width-background-border-clearing {
  background-color: #ffffff; /* Light grey background */
  width: 100%; /* Ensures background spans the full width */
  padding: 40px 0; /* Adds vertical padding */
}

.border-clearing {
  font-family: "Roboto", sans-serif; /* Modern, clean font */
  margin: 40px auto;
  color: #333;
  padding: 40px;
  border-radius: 10px; /* Rounded corners for a smooth feel */
  max-width: 1200px;
  background-color: transparent; /* No background color here */
}

/* Title */
.section-title h2 {
  font-size: 2.2rem;
  color: #1f1f1f; /* Dark text for contrast */
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

/* Importance of Diversity */
.importance-of-diversity {
  margin-top: 40px;
}

.importance-of-diversity h3 {
  font-size: 1.5rem;
  color: #1f1f1f;
  margin-bottom: 10px;
  font-weight: 600;
}

.diversity-box {
  display: flex;
  align-items: center;
  background-color: #fefefe;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 20px;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .diversity-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.diversity-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  margin-right: 20px;
  color: #2c64ad;
}

.diversity-box .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diversity-box p {
  font-size: 1.1rem;
  color: #555;
  flex: 1;
}

/* Service Overview */
.service-overview {
  margin-top: 50px;
}

.service-overview h3 {
  font-size: 1.7rem;
  color: #1f1f1f;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-box {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  margin-bottom: 20px; /* Adds space between service items */
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .service-item:hover {
    transform: translateY(calc(var(--lift-sm, 4px) * -1));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.service-item h4 {
  font-size: 1.3rem;
  color: #1f1f1f;
  margin-top: 15px;
  font-weight: 500;
}

.service-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

.service-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  color: #2c64ad;
}

.service-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Global Impact */
.global-impact {
  margin-top: 50px;
  text-align: center;
}

.global-impact h3 {
  font-size: 1.7rem;
  color: #1f1f1f;
  font-weight: 600;
}

.global-impact p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .service-box {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Two items per row on smaller tablets */
  }

  .service-item {
    width: 100%; /* Ensure each item takes full width of the column */
    margin-bottom: 20px; /* Maintain space between items */
  }
}

@media screen and (max-width: 768px) {
  .service-box {
    grid-template-columns: 1fr; /* Stack items vertically on small screens */
  }

  .service-item {
    width: 100%; /* Full width for each item */
    margin-bottom: 20px; /* Space between stacked items */
    padding: 15px; /* Optional: reduce padding for smaller screens */
  }
}

@media screen and (max-width: 480px) {
  .service-item {
    padding: 10px; /* Less padding on very small screens */
    margin-bottom: 15px; /* Less space between items */
  }
}

/* General styling for Asset Management */
/* Full-width background container */
.full-width-background-asset-management {
  background-color: #f7f7f7; /* Light grey background */
  width: 100%; /* Ensures background spans the full width */
  padding: 40px 0; /* Adds vertical padding */
}

/* Original asset-management styling */
.asset-management {
  font-family: "Roboto", sans-serif; /* Clean modern font */
  margin: 40px auto;
  color: #333;
  padding: 40px;
  border-radius: 10px; /* Rounded corners */
  max-width: 1200px;
  background-color: transparent; /* No background color here */
}

.section-title h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.section-title p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Key Components */
.key-components {
  margin-top: 40px;
}

.key-components h3 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.component-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.component-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .component-item:hover {
    transform: translateY(calc(var(--lift-sm, 4px) * -1));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.component-item h4 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 15px;
  font-weight: 500;
}

.component-item p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
}

.component-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  color: #2c64ad;
}

.component-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Best Practices */
.best-practices {
  margin-top: 50px;
}

.best-practices h3 {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

.practice-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.practice-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .practice-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.practice-item h4 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

.practice-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-top: 8px;
}

.practice-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  color: #2c64ad;
}

.practice-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .component-box,
  .practice-box {
    grid-template-columns: 1fr; /* Stack on smaller screens */
  }

  .component-item,
  .practice-item {
    width: 100%;
  }
}

/* Full-width background for storage and handling section */
.full-width-background-storage-handling {
  background-color: #ffffff; /* Light grey background */
  width: 100%; /* Full-width background */
  padding: 50px 0; /* Vertical padding */
}

/* Container for storage-handling content */
.storage-handling {
  font-family: "Roboto", sans-serif; /* Clean modern font */
  margin: 40px auto;
  color: #333;
  padding: 40px;
  border-radius: 10px; /* Rounded corners */
  max-width: 1200px;
  background-color: transparent; /* No background color here */
}

/* Section title */
.storage-handling h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Section description */
.storage-handling p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Boxes for individual solutions */
.solution-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two boxes per row */
  gap: 20px; /* Spacing between boxes */
  margin-top: 30px;
}

.solution-item {
  background-color: #fefefe; /* White background */
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
}

@media (hover: hover) {
  .solution-item:hover {
    transform: translateY(calc(var(--lift-sm, 4px) * -1));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  }
}

.solution-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  margin-bottom: 15px;
  color: #2c64ad;
}

.solution-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-item h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.solution-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .solution-boxes {
    grid-template-columns: 1fr; /* Single column layout on smaller screens */
  }

  .storage-handling h3 {
    font-size: 1.5rem;
  }

  .storage-handling p {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 480px) {
  .solution-item h4 {
    font-size: 1.2rem;
  }

  .solution-item p {
    font-size: 0.9rem;
  }
}

/* Full-width background for SLP and Induction services */
.full-width-background-slp {
  background-color: #f7f7f7; /* White background for clarity */
  width: 100%; /* Full-width background */
  padding: 50px 0; /* Vertical padding */
}

/* Container for SLP and Induction services content */
.slp-induction-services {
  font-family: "Roboto", sans-serif; /* Clean modern font */
  margin: 40px auto;
  color: #333;
  padding: 40px;
  border-radius: 10px; /* Rounded corners */
  max-width: 1200px;
  background-color: transparent; /* No background color here */
}

/* Section title */
.slp-induction-services h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Section description */
.slp-induction-services p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Boxes for individual services */
.slp-solutions-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center; /* Center items if there's only one */
}

.slp-solution-item {
  background-color: #fefefe; /* White background */
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1 1 calc(50% - 20px); /* Adjust to two items per row */
  max-width: calc(50% - 20px); /* Max width to ensure proper spacing */
}

.slp-solution-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(44, 100, 173, 0.16);
  border: 1px solid rgba(44, 100, 173, 0.22);
  margin-bottom: 15px;
  color: #2c64ad;
}

.slp-solution-item .icon svg {
  width: 60%;
  height: 60%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slp-solution-item h4 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.slp-solution-item p {
  font-size: 1rem;
  transition:
    transform var(--motion-medium, 420ms) var(--motion-ease, ease),
    box-shadow var(--motion-medium, 420ms) var(--motion-ease, ease);
  transform: translateZ(0);
  color: #666;

  @media (hover: hover) {
    .slp-solution-item:hover {
      transform: translateY(calc(var(--lift-sm, 4px) * -1));
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    }
  }

  /* Icon micro-interactions */
  .icon svg {
    transition: transform var(--motion-fast, 160ms) var(--motion-ease, ease);
  }

  @media (hover: hover) {
    .transport-item:hover .icon svg,
    .bowser-item:hover .icon svg,
    .diversity-box:hover .icon svg,
    .service-item:hover .icon svg,
    .component-item:hover .icon svg,
    .practice-item:hover .icon svg,
    .solution-item:hover .icon svg,
    .slp-solution-item:hover .icon svg,
    .storage-option:hover .icon svg {
      transform: rotate(-6deg) scale(1.06);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .transport-item,
    .bowser-item,
    .diversity-box,
    .service-item,
    .component-item,
    .practice-item,
    .solution-item,
    .slp-solution-item,
    .icon svg {
      transition: none !important;
      transform: none !important;
    }
  }
  line-height: 1.6;
}

/* Mobile: tablets and below */
@media screen and (max-width: 768px) {
  .slp-solution-item {
    flex: 1 1 100%; /* Take full width */
    max-width: 100%; /* Remove the 50% restriction */
  }

  .slp-induction-services h3 {
    font-size: 1.5rem;
  }

  .slp-induction-services p {
    font-size: 1.1rem;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  .slp-solution-item {
    flex: 1 1 100%; /* Keep full width */
  }

  .slp-solution-item h4 {
    font-size: 1.2rem;
  }

  .slp-solution-item p {
    font-size: 0.9rem;
  }
}
