/* Container class as requested */
        .people {
            width: 100%;
            margin: 0 auto;
            /* Setting max-width to 1230px */
            max-width: 1230px; 
            padding: 0 15px; /* Bootstrap container padding defaults */
        }

        /* Left Column Styling */
        .blue-box {
            background-color: #247cae; /* Matching the blue from the image */
            color: white;
            padding: 35px 35px;
            position: relative;
            height: 100%; /* Ensures it stretches to equal height with the right column */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* The faded "Why Choose Us?" background text effect */
        .faded-bg-text {
            position: absolute;
            top: 25px;
            left: 20px;
            font-size: 32px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            pointer-events: none;
            line-height: 1;
            text-transform: capitalize;
        }

        .blue-box h2 {
            font-weight: 800;
            margin-bottom: 15px;
            font-size: 32px;
            z-index: 2; /* Ensures it is above the faded text */
            position: relative;
        }

        .blue-box .sub-title {
            font-weight: bold;
            font-size: 1.2rem;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .blue-box p {
            /* font-size: 0.95rem; */
            margin-bottom: 0;
            line-height: 1.6;
            z-index: 2;
            position: relative;
        }
        
        .blue-box p + p {
            margin-top: 15px;
        }

        /* Right Column Styling */
        .green-box {
            /* Placeholder background image matching the growth/seedling theme */
            /* background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/Growth.webp'); */
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            /* padding: 50px; */
            height: 100%;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quote-text {
            color: #26e3ad; /* Bright cyan green matching the image */
            font-size: 4rem;
            font-weight: bold;
            line-height: 1.1;
        }

        /* Mobile Styling Fixes */
        @media (max-width: 768px) {
            .green-box {
                /* min-height: 350px; */
                /* padding: 30px; */
            }
            .quote-text {
                font-size: 2.5rem;
            }
            .blue-box {
                padding: 30px;
            }
            .faded-bg-text {
                font-size: 2.5rem;
            }
            .blue-box h2 {
  font-weight: 800;
  margin-bottom: 15px;
  font-size: 17px;
  z-index: 2;
  position: relative;
}
        }