.heroSection {
  position: relative;
  height: 100dvh;
  overflow: hidden;

  figure {
    height: 100%;

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

  .heroContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-black);
    width: 90%;
    max-width: 800px;
    background-color: rgba(251, 251, 251, 0.85);
    padding: 2rem;
    border-radius: 8px;

    h1 {
      font-size: var(--font-h1);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    p {
      font-size: var(--font-base);
      opacity: 0.9;
    }
  }
}

.aboutSection {
  padding: 6rem 0;
  background-color: var(--color-white);

  .aboutGrid {
    display: grid;
    gap: 4rem;
    margin-bottom: 6rem;

    @media (width >= 768px) {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }

    &.reverse {
      @media (width >= 768px) {
        .aboutContent {
          order: 2;
        }
        .aboutImage {
          order: 1;
        }
      }
    }
  }

  .aboutContent {
    h2 {
      font-size: var(--font-h2);
      margin-bottom: 1.5rem;
      color: var(--color-primary);
    }

    p {
      font-size: var(--font-base);
      line-height: 1.8;
    }
  }

  .aboutImage {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;

      &:hover {
        transform: scale(1.05);
      }
    }
  }

  .companyInfo {
    max-width: 800px;
    margin-inline: auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;

    h2 {
      font-size: var(--font-h2);
      text-align: center;
      margin-bottom: 0.5rem;
      color: var(--color-primary);
      text-transform: uppercase;
    }

    h3 {
      font-size: 1.25rem;
      text-align: center;
      margin-bottom: 3rem;
      color: var(--color-black);
    }

    .infoRow {
      display: grid;
      gap: 1rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);

      @media (width >= 768px) {
        grid-template-columns: 200px 1fr;
      }

      &:last-child {
        border-bottom: none;
      }
    }

    dt {
      font-weight: 700;
      color: var(--color-black);
    }

    dd {
      color: #666;
      line-height: 1.8;

      ul {
        list-style: disc;
        padding-left: 1.5rem;

        li {
          margin-bottom: 0.5rem;

          &:last-child {
            margin-bottom: 0;
          }
        }
      }

      a {
        color: var(--color-primary);
        text-decoration: none;
        transition: opacity 0.3s ease;

        &:hover {
          opacity: 0.8;
        }
      }
    }
    @media (width < 768px) {
      padding: 3rem 0;
    }
  }
}
