#about {
  position: relative;
  min-height: 1080px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  overflow: hidden;
  background-color: var(--background-dark);
  background-image: url("/assets/svg/about-us-background.svg");
  background-size: cover;
  color: var(--text-white);
}

#about h1 {
  font-size: var(--font-size-xxlarge);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 15px;
  text-align: center;
}

#about p.subtitle {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-regular);
  text-align: center;
  max-width: 800px;
  margin-bottom: 40px;
  color: var(--text-muted-foreground);
}

#about .background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.background-svg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.about-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  width: 100%;
  margin: 0;
  padding: 0 40px;
  box-sizing: border-box;
}

.feature-card {
  height: 530px;
  background: var(--card-background);
  border-radius: 20px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 210px;
  height: 210px;
}

.feature-icon svg {
  position: absolute;
}

h2.feature-title {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-semibold);
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.feature-description {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  color: var(--text-muted-foreground);
  line-height: 1.4;
  max-width: 85%;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .features-grid {
    gap: 30px;
    width: auto;
    padding: 0 30px;
  }

  .feature-card {
    padding: 30px 25px;
    align-items: center;
    justify-content: center;
  }

  .background-svg svg {
    transform: scale(1.2);
  }

  h2.feature-title {
    font-size: var(--font-size-medium);
  }
}

@media (max-width: 768px) {
  #about {
    padding: 60px 0;
    min-height: auto;
  }

  #about h1 {
    font-size: var(--font-size-xxlarge);
    margin-bottom: 20px;
  }

  #about p.subtitle {
    font-size: var(--font-size-medium);
    margin-bottom: 50px;
  }

  .about-content {
    width: 100%;
    box-sizing: border-box;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .feature-card {
    width: 100%;
    min-height: 400px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  h2.feature-title {
    font-size: var(--font-size-large);
    margin: 0;
    line-height: 1.3;
    text-align: center;
  }

  .feature-description {
    font-size: var(--font-size-medium);
    max-width: 100%;
    line-height: 1.5;
    text-align: center;
  }

  .background-svg svg {
    transform: scale(1.4);
    transform-origin: top left;
  }
}

@media (max-width: 480px) {
  #about {
    padding: 40px 0;
    min-height: auto;
  }

  #about h1 {
    font-size: var(--font-size-xlarge);
    margin-bottom: 15px;
  }

  #about p.subtitle {
    font-size: var(--font-size-base);
    margin-bottom: 40px;
    line-height: 1.5;
  }

  .about-content {
    width: 100%;
    box-sizing: border-box;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .feature-card {
    width: 100%;
    min-height: 350px;
    padding: 35px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  h2.feature-title {
    font-size: var(--font-size-medium);
    margin: 0;
    padding: 0;
    line-height: 1.4;
    text-align: center;
  }

  .feature-description {
    font-size: var(--font-size-base);
    max-width: 100%;
    padding: 0;
    line-height: 1.5;
    text-align: center;
  }

  .background-svg {
    visibility: hidden;
  }
}

@media (max-width: 400px) {
  #about p.subtitle {
    font-size: var(--font-size-xxsmall);
  }

  .feature-description {
    font-size: var(--font-size-xxsmall);
  }
}
