.about-3 {
  background-color: var(--surface-color);

  .about-content {
    h3 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }

    .lead {
      font-size: 1.25rem;
      font-weight: 500;
      color: color-mix(in srgb, var(--default-color), transparent 20%);
      margin-bottom: 1.5rem;
    }

    p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
  }

  .features-list {
    margin-top: 2rem;

    .feature-item {
      margin-bottom: 2rem;

      .feature-icon {
        width: 60px;
        height: 60px;
        background-color: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;

        i {
          font-size: 1.5rem;
          color: var(--contrast-color);
        }
      }

      .feature-content {
        h5 {
          font-size: 1.3rem;
          margin-bottom: 0.5rem;
          font-weight: 600;
        }

        p {
          margin-bottom: 0;
          color: color-mix(in srgb, var(--default-color), transparent 25%);
        }
      }
    }
  }

  .about-images {
    position: relative;
    height: 500px;

    .main-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 75%;
      height: 70%;
      z-index: 2;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }
    }

    .secondary-image {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60%;
      height: 60%;
      z-index: 3;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border: 5px solid var(--surface-color);
      }
    }

    @media (max-width: 768px) {
      height: 400px;

      .main-image {
        width: 100%;
        height: 60%;
      }

      .secondary-image {
        width: 70%;
        height: 50%;
      }
    }
  }

  .chef-quote {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    .chef-avatar {
      img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 3px solid var(--accent-color);
      }
    }

    .quote-text {
      font-size: 1.3rem;
      font-style: italic;
      line-height: 1.7;
      margin-bottom: 1rem;
      color: var(--heading-color);
      font-weight: 400;
    }

    .quote-author {
      font-style: normal;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    @media (max-width: 768px) {
      padding: 2rem;

      .chef-avatar {
        margin-bottom: 1rem;
      }

      .quote-text {
        font-size: 1.1rem;
      }
    }
  }

  .highlight-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .highlight-icon {
      width: 70px;
      height: 70px;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;

      i {
        font-size: 1.8rem;
        color: var(--accent-color);
      }
    }

    h4 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    p {
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      line-height: 1.7;
      margin-bottom: 0;
    }
  }

  @media (max-width: 992px) {
    .about-content {
      margin-bottom: 3rem;

      h3 {
        font-size: 2rem;
      }
    }
  }
}

