 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000000;
            color: white;
            font-family: 'Poppins', 'Inter', sans-serif;
            min-height: 100vh;
        }



        .about-us-section {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            padding: 80px 40px;
            max-width: 1400px;
            margin: 0 auto;
            gap: 60px;
        }

        .about-us-left {
            flex: 1;
            max-width: 500px;
        }

        .about-us-right {
            flex: 1;
            max-width: 700px;
        }

        .about-us-title {
            font-family: "Poppins", sans-serif;
            font-size: 72px;
            font-weight: 700;
            font-style: normal;
            margin-bottom: 40px;
            color: white;
            line-height: 1.1;
        }

        .learn-more-button {
            background-color: #000000;
            border: 1.5px solid #ffffff;
            border-radius: 40px;
            font-family: "Poppins", sans-serif;
            font-weight: 600;
            font-style: normal;
            font-size: 16px;
            color: white;
            cursor: pointer;
            transition: all 0.6s ease;
            text-decoration: none;
            padding: 18px 35px;
            margin-bottom: 0;
            display: inline-block;
        }

        .learn-more-button:hover {
            background-color: #ffffff;
            border-color: #000000;
            color: #000000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .about-us-content {
            max-width: 100%;
            margin: 0;
        }

        .about-us-text {
            color: rgb(186, 186, 186);
            font-family: "Poppins", sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.7;
            margin-bottom: 25px;
            text-align: left;
        }

        .about-us-text:last-child {
            margin-bottom: 0;
        }

        @media only screen and (max-width: 768px) {
            .about-us-section {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
                gap: 40px;
            }

            .about-us-left {
                max-width: 100%;
            }

            .about-us-right {
                max-width: 100%;
            }

            .about-us-title {
                font-size: 48px;
                margin-bottom: 30px;
            }

            .about-us-text {
                font-size: 16px;
                text-align: center;
            }

            .learn-more-button {
                margin-bottom: 20px;
                font-size: 15px;
                padding: 15px 30px;
            }
        }

        @media only screen and (min-width: 769px) and (max-width: 992px) {
            .about-us-section {
                gap: 40px;
                padding: 60px 30px;
            }

            .about-us-title {
                font-size: 56px;
            }

            .about-us-text {
                font-size: 17px;
            }
        }

        @media only screen and (min-width: 993px) and (max-width: 1200px) {
            .about-us-title {
                font-size: 64px;
            }

            .about-us-text {
                font-size: 18px;
            }
        }

        /* Background pattern overlay */
        .about-us-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(163, 255, 71, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(163, 255, 71, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .about-us-section {
            position: relative;
        }
