.about-4 {
  padding: 120px 0;

  .content {
    h2 {
      font-size: 42px;
      font-weight: 300;
      line-height: 1.3;
      margin-bottom: 30px;
      font-family: var(--heading-font);
      
      @media (max-width: 768px) {
        font-size: 32px;
      }
    }

    .lead {
      font-size: 20px;
      font-weight: 400;
      line-height: 1.7;
      margin-bottom: 40px;
      color: color-mix(in srgb, var(--default-color), transparent 15%);
    }

    p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 25px;
      color: color-mix(in srgb, var(--default-color), transparent 25%);
    }
  }

  .stats-row {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    
    @media (max-width: 576px) {
      flex-direction: column;
      gap: 30px;
    }

    .stat-item {
      .stat-number {
        font-size: 48px;
        font-weight: 300;
        line-height: 1;
        color: var(--accent-color);
        font-family: var(--heading-font);
      }

      .stat-label {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-top: 8px;
      }
    }
  }

  .cta-section {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    
    @media (max-width: 576px) {
      flex-direction: column;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      padding: 16px 32px;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.3s ease;

      &:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
        color: var(--contrast-color);
      }
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      padding: 16px 32px;
      background-color: transparent;
      color: var(--heading-color);
      text-decoration: none;
      border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
      border-radius: 6px;
      font-weight: 500;
      transition: all 0.3s ease;

      &:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateY(-2px);
      }
    }
  }


    a {
        transition: all 0.3s ease;
    }
    a:hover, a:focus {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

  .image-wrapper {
    position: relative;
    
    img {
      border-radius: 12px;
      box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .floating-card {
      position: absolute;
      bottom: -30px;
      right: -30px;
      background-color: var(--surface-color);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
      max-width: 280px;
      
      @media (max-width: 992px) {
        position: static;
        margin-top: 30px;
        max-width: none;
      }

      .card-content {
        display: flex;
        align-items: center;
        gap: 20px;

        .icon {
          width: 60px;
          height: 60px;
          background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;

          i {
            font-size: 24px;
            color: var(--accent-color);
          }
        }

        .text {
          h4 {
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 5px 0;
            color: var(--heading-color);
          }

          p {
            font-size: 14px;
            margin: 0;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            line-height: 1.6;
          }
        }
      }
    }
  }

  @media (max-width: 992px) {
    .row {
      text-align: center;
    }

    .content {
      margin-bottom: 60px;
    }

    .stats-row {
      justify-content: center;
    }
  }
}