.section-page-image-and-feature {
  overflow-x: hidden;
  .heading {
    text-align: center;
    margin-bottom: 2rem;

    .heading-title {
      font-size: var(--heading-title-font-size);
      font-weight: bold;
      margin-bottom: 0.5rem;
      max-width: var(--heading-title-max-width);
      margin: 0 auto;
      color: rgb(var(--foreground-color));
    }

    .heading-description {
      font-size: var(--heading-description-font-size);
      max-width: var(--heading-description-max-width);
      margin: 0 auto;
      color: rgb(var(--foreground-color));
    }
  }

  .feature-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;

    .feature-radio {
      display: none;
    }

    .feature-image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      min-height: 500px;
      border: 2px solid rgb(var(--foreground-color));
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

      .feature-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;

        .feature-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }

    .feature-item-list {
      display: flex;
      flex-direction: column;

      .feature-item {
        border-bottom: 1px solid rgba(var(--foreground-color), 0.2);
        margin-bottom: 0;
        position: relative;

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

        .feature-item-toggle {
          width: 100%;
          background: none;
          border: none;
          padding: 1.5rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          text-align: left;

          &:hover {
            background-color: rgba(var(--foreground-color), 0.05);
          }
        }

        .feature-item-title {
          font-size: var(--text-xl);
          font-weight: bold;
          color: rgb(var(--foreground-color));
          margin: 0;
          flex: 1;
        }

        .feature-item-icon {
          font-size: 1.5rem;
          color: rgb(var(--foreground-color));
          font-weight: bold;
          margin-left: 1rem;
        }

        .feature-item-description {
          font-size: var(--text-base);
          color: rgb(var(--foreground-color));
          max-height: 0;
          overflow: hidden;
          padding: 0 1.5rem;

          p {
            margin: 0;
          }
        }
      }
    }

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      gap: 2rem;

      .feature-image-wrapper {
        min-height: 300px;
        order: 1;
      }

      .feature-item-list {
        order: 2;
      }
    }
  }
}