.setup {
    margin: 0 auto;
    max-width: 1200px;
    padding: 5rem 20px;
    background: #fff;

    .setup-content {
      .title { 
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #222;
        text-align: center;
      }

      .subtitle {
        font-size: 1.2rem;
        color: #666;
        text-align: center;
        margin-bottom: 3rem;
      }

      .hero-image-wrapper {
        margin-bottom: 4rem;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        .hero-image { 
          max-width: 100%; 
          width: 100%;
          height: auto;
          display: block;
        }
      }
    }

    .features {
      gap: 2.5rem;
      display: flex;
      flex-wrap: wrap;
      margin-top: 3rem;
      justify-content: center;

      .feature {
        max-width: 320px;
        text-align: center;
        padding: 2rem;
        border-radius: 16px;
        background: #f8f9ff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        &:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
          font-size: 3rem;
          margin-bottom: 1rem;
        }

        h3 { 
          font-size: 1.4rem;
          font-weight: 700;
          margin-bottom: 1rem;
          color: #222;
        }
        
        p { 
          font-size: 1rem; 
          color: #666;
          line-height: 1.6;
        }
      }
    }

    @media (max-width: 768px) {
      padding: 3rem 20px;

      .setup-content {
        .title { font-size: 2rem; }
        .subtitle { font-size: 1rem; margin-bottom: 2rem; }
        .hero-image-wrapper { margin-bottom: 2rem; }
      }

      .features { 
        flex-direction: column; 
        align-items: center;
        gap: 2rem;

        .feature {
          max-width: 100%;
          padding: 1.5rem;
        }
      }
    }
  }
