.home-section
{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../img/Skyline_Moving_Truck.jpeg);
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  min-height: calc(100vh - 100px);
}

.home-hero
{
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 480px;
}

.home-hero-title
{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.home-hero-text
{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: white;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px)
{
  .home-section
  {
    flex-direction: column;
    gap: 30px;
    padding: 40px;
  }

  .home-hero
  {
    max-width: 100%;
    text-align: center;
  }

  .home-hero-title
  {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .home-hero-text
  {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  }
}

.howItWorks-section
{
  background-color: rgba(195, 28, 47);
  background-position: left;
  background-size: cover;
  padding: 100px 60px;
  min-height: 300px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  color: white;
}

.section-title
{
  margin-top: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  padding-bottom: 40px;
}

.steps 
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.step
{
  flex: 0 0 280px;
}

.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(2) { transition-delay: 0.2s; }
.step:nth-child(3) { transition-delay: 0.4s; }

.steps h2
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid white;
  font-size: 2.0rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto 12px auto;
  text-align: center;
}

.steps h3
{
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 8px 0;
  align-items: center;
  padding: 10px;
  white-space: nowrap;
}

.steps p
{
  font-size: 0.9rem;
  font-family: 'Arial', sans-serif;
  margin: 0;
  color: #dddae5;
  line-height: 1.4;
}

@media (max-width: 1096px)
{
  .steps
  {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .step
  {
    flex: none;
    width: 100%;
    max-width: 340px;
  }

  .steps h3
  {
    white-space: normal;
  }
}

.fade-in
{
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show
{
  opacity: 1;
  transform: translate(0, 0);
}

.why-us-section
{
  background-color: #ffffff;
  padding: 80px 60px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.why-us-section-title
{
  margin-top: 0;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  padding-bottom: 10px;
  color: black
}

.why-us-section-text
{
  font-size: 1.0rem;
  font-family: 'Arial', sans-serif;
  margin: 0;
  color: #505050;
  line-height: 1.6;
}

.company-overview-section
{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 28px 60px;
  background-color: #f5f5f5;
  width: 100%;
  box-sizing: border-box;
}

.company-overview-item
{
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: black;
  white-space: nowrap;
}

.company-overview-box
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.company-overview-img
{
  height: 32px;
  width: auto;
  border-radius: 4px;
}
