.giftflow-welcome {
  background: #fff;
  border: solid 1px #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 100%;
  margin: 2rem auto;

  // Header section
  &__header {
    margin-bottom: 32px;
  }

  &__logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  &__logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 6px;
    display: block;
  }

  &__title-section {
    flex: 1;
  }

  &__title {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: .1rem;
  }

  &__subtitle {
    margin: 0;
    font-size: .9rem;
    line-height: normal;
    opacity: .8;
  }

  // Two-column content layout
  &__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;

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

  // Left column - Features
  &__left-column {
    .giftflow-welcome__features {
      h3 {
        margin: 0 0 16px 0;
        font-size: 20px;
        font-weight: 600;
      }
    }

    .giftflow-welcome__features-item {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: .3em 0;
    }
  }

  &__features-list {
    padding-left: 0px;
    // color: #444;
    // font-size: 15px;
    margin: 0;
    line-height: 1.5;

    li {
      margin-bottom: .4rem;
      
      strong {
        font-weight: 600;
      }
    }
  }

  // Right column - Actions and Help
  &__right-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  &__actions {
    display: flex;
    gap: .5rem;
    // flex-direction: column;
    // gap: 12px;
  }

  

  &__help {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;

    h4 {
      margin: 0 0 8px 0;
      font-size: 16px;
      font-weight: 600;
      // color: #2c3e50;
    }

    p {
      margin: 0;
      color: #6c757d;
      font-size: 14px;
      line-height: 1.5;

      a {
        // color: #2271b1;
        text-decoration: underline;
        
        &:hover {
          // color: #165a8f;
          text-decoration: none;
        }
      }
    }
  }

  // Responsive adjustments
  @media (max-width: 768px) {
    padding: 24px;
    max-width: 100%;
    // margin: 16px;

    &__title {
      font-size: 24px;
    }

    &__subtitle {
      font-size: 15px;
    }

    &__logo-section {
      gap: 12px;
    }

    
  }
}
