/* About 6: Image with decorative shadow left, Text right */
.about6 {
  width: 100%;
  padding: 80px 40px;
  background-color: var(--main-bg);
}

.about6-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about6-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about6-image {
  position: relative;
  z-index: 2;
  width: 300px;
  height: auto;
}

.about6-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.about6-decorative-back {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 300px;
  height: 100%;
  background-color: var(--card-bg);
  z-index: 1;
}

.about6-decorative-accent {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 300px;
  height: 100%;
  background-color: var(--button-bg);
  z-index: 1;
}

.about6-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.about6-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.1;
  font-family: Arial, sans-serif;
}

.about6-text {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

@media (max-width: 1024px) {
  .about6-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about6-image-wrapper {
    order: 1;
  }

  .about6-content {
    order: 2;
  }

  .about6-title {
    font-size: 48px;
  }

  .about6-image {
    width: 250px;
  }

  .about6-decorative-back {
    width: 250px;
    left: -15px;
    top: -15px;
  }

  .about6-decorative-accent {
    width: 250px;
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .about6 {
    padding: 60px 20px;
  }

  .about6-title {
    font-size: 36px;
  }

  .about6-text {
    font-size: 16px;
  }

  .about6-image {
    width: 200px;
  }

  .about6-decorative-back {
    width: 200px;
    left: -10px;
    top: -10px;
  }

  .about6-decorative-accent {
    width: 200px;
    right: -10px;
    bottom: -10px;
  }
}
