        .aboutus2-section {
            padding: 80px 0;
        }

        .aboutus2-section .images-wrapper {
            position: relative;
            height: 100%;
            min-height: 500px;
        }

        .aboutus2-section .truck-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 60%;
            height: auto;
            border-radius: 15px;
            overflow: hidden;
            z-index: 1;
        }

        .aboutus2-section .truck-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .aboutus2-section .crane-image {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 65%;
            height: auto;
            border-radius: 15px;
            overflow: hidden;
            z-index: 2;
            border: 8px solid #fff;
        }

        .aboutus2-section .crane-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .aboutus2-section .content-wrapper {
            padding-left: 40px;
        }

        .aboutus2-section .badge-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #000;
            border: 1px solid #ddd;
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .aboutus2-section .badge-tag .dot {
            width: 8px;
            height: 8px;
            background: #d31480;
            border-radius: 50%;
        }

        .aboutus2-section .main-title {
            color: #000;
            font-size: 30px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .aboutus2-section .description {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .aboutus2-section .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
        }

        .aboutus2-section .features-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #000;
            font-size: 16px;
            font-weight: 500;
        }

        .aboutus2-section .features-list li i {
            background: #ffd740;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .aboutus2-section .btn-read-more {
            background: #fff;
            color: #000;
            border: 2px solid #371c46;
            border-radius: 50px;
            padding: 15px 40px 15px 30px;
            font-size: 16px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .aboutus2-section .btn-read-more:hover {
            background: #371c46;
            color: #fff;
        }

        .aboutus2-section .btn-read-more .arrow-icon {
            background: #d31480;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #fff;
        }

        .aboutus2-section .description ul {
          list-style: none;
          padding: 0;
          margin-top: 16px;
        }

        .aboutus2-section .description ul li {
          position: relative;
          padding-left: 32px;
          margin-bottom: 12px;
          font-size: 0.95rem;
          font-weight: 600;
          color: #1a2e4a;
        }

        .aboutus2-section .description ul li::before {
          content: "✓";
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 20px;
          height: 20px;
          background-color: #d31480;
          color: #fff;
          border-radius: 50%;
          font-size: 0.65rem;
          font-weight: 700;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        @media (max-width: 991px) {
            .aboutus2-section .images-wrapper {
                min-height: 400px;
                margin-bottom: 50px;
            }

            .aboutus2-section .content-wrapper {
                padding-left: 0;
            }

            .aboutus2-section .main-title {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .aboutus2-section {
                padding: 50px 0;
            }

            .aboutus2-section .main-title {
                font-size: 28px;
            }

            .aboutus2-section .images-wrapper {
                min-height: 350px;
            }
        }
