
    .about-section {
      display: flex;
      align-items: center;
      background-color: #f9f9f9;
      padding: 60px 40px;
      gap: 30px;
      position: relative;
      overflow: hidden;
    }

    .about-bg {
      position: absolute;
      right: 0;
      top: 0;
      width: 90%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .about-content {
      position: relative;
      z-index: 1;
      max-width: 40%;
    }

    .about-title {
      font-size: clamp(24px, 2.1vw, 40px);
      font-weight: 700;
      color: #ff5900;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .about-title small {
      display: block;
      font-size: 22px;
      margin-top: 5px;
    }

    .about-line {
      width: 50px;
      height: 3px;
      background-color: #ff5900;
      margin-bottom: 20px;
    }

    .about-desc {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .about-stats {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
    }
    .stat-item {
      text-align: left;
    }
    .stat-number {
      font-size: clamp(26px, 2.5vw, 48px);
      font-weight: bolder;
      color: #ff5900;
    }
    .stat-text {
      font-size: 14px;
      color: #666;
      font-weight: bold;
    }

    .about-btn {
      display: inline-block;
      padding: 10px 25px;
      background-color: #ff5900;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 2px;
      transition: background .3s;
      border-radius: 20px;
    }
    .about-btn:hover {
      background-color: #e04e00;
    }

    @media (max-width: 991px) {
      .about-section {
        flex-direction: column;
        padding: 40px 20px;
      }
      .about-bg {
        position: static;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
      }
      .about-content {
        max-width: 100%;
      }
      .about-stats {
        flex-wrap: wrap;
      }
    }