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

  .friendly-content {
    .title { 
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #222;
      text-align: center;
    }
    
    .subtitle { 
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 3rem;
      color: #666;
      text-align: center;
    }

    .image-container {
      gap: 2rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3rem;

      .image-card {
        max-width: 320px;
        text-align: center;
        background: white;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        &:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .image-wrapper {
          border-radius: 12px;
          overflow: hidden;
          margin-bottom: 1rem;

          img { 
            width: 100%; 
            height: 250px;
            object-fit: cover;
            display: block;
          }
        }

        p { 
          font-size: 1.1rem;
          font-weight: 600;
          margin: 0;
          color: #222;

          span {
            display: block;
            font-weight: 400;
            font-size: 0.95rem;
            color: #666;
            margin-top: 0.25rem;
          }
        }
      }
    }

    .description {
      font-size: 1.1rem;
      line-height: 1.8;
      max-width: 800px;
      margin: 2rem auto;
      text-align: center;
      color: #444;

      .highlight { 
        font-weight: 700;
        color: var(--kuida-main-color, #e04e53);
      }
    }

    .disclaimer { 
      font-size: 0.9rem; 
      color: #666; 
      margin-top: 1rem;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .explore-button {
      color: white;
      background: var(--kuida-main-color, #e04e53);
      font-size: 1.1rem;
      font-weight: 700;
      margin-top: 2rem;
      padding: 1rem 2.5rem;
      border-radius: 12px;
      display: inline-block;
      text-decoration: none;
      border: none;
      box-shadow: 0 4px 12px rgba(224, 78, 83, 0.3);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      text-align: center;
      display: block;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(224, 78, 83, 0.4);
      }
    }
  }

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

    .friendly-content {
      .title { font-size: 2rem; }
      .subtitle { font-size: 1.5rem; margin-bottom: 2rem; }

      .image-container { 
        flex-direction: column; 
        align-items: center;
        gap: 1.5rem;

        .image-card {
          max-width: 100%;
        }
      }
    }
  }
}
