 .background-SectionColor {
                min-height: 500px;
                display: flex;
                color: white;
                padding: 25px;
            }

            .Hstack-Container {
                display: flex;
                gap: 20px;            /* space between image & text */
                padding: 20px;        /* space from outer edges */
            }

            .Hstack-Style {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 20px;
            }

            .Vstack-Container {
                display: inline-block;
                text-align: center;
                justify-content: center;
            }

            .sectionTitles {
                height: 120px;
                color: rgb(214, 214, 214); 
                font-size: 16px;        
                font-family: 'Asap', sans-serif;
                font-weight: 500;
                line-height: 1.70em;
                letter-spacing: 0.05em;
                padding-bottom: 20%;
            }

            .sectionIcons {
                width: 40%;
                height: 120px;
                object-fit: contain; /* ensures the image scales properly */
                margin-bottom: -40px;
            }
            
            .image-container {
                flex: 1;
                display: flex;
                overflow: hidden; /* ensures the image doesn't spill out of the container */
                justify-content: center;
                object-fit: contain; 
            }

            .image {
                width: 50%;
                object-fit: contain; /* ensures the image scales properly */
                border-radius: 20px;
            }
           

            /* Text content styles */
            .background-Description {
               /* 1. Semi-transparent background (white with low opacity) */
                background: rgba(255, 255, 255, 0.2); 
                backdrop-filter: blur(10px); 
                -webkit-backdrop-filter: blur(10px); /* For Safari support */
                
                /* 3. Add a light border to mimic a glass edge */
                border: 1px solid rgba(255, 255, 255, 0.3); 

                /* 4. Add subtle shadows and rounded corners for depth */
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
                padding: 20px;
                border-radius: 20px;

                font-size: 18px;        
                font-family: 'Asap', sans-serif;
                font-weight: 100;

                line-height: 1.70em;
                letter-spacing: 0.05em;
                color: white; 
                text-align:left;
                height:fit-content;
            }

            .callToActionWrapper{
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .download-img{
                width: 130px;
                object-position: center;
                padding: 30px;
            }

            @media (max-width: 768px) {
                .sectionOne-Container {
                    flex-direction: column;
                }

                .image-container,
                .parentContainer {
                    width: 100%;
                }
            }

