
        .full-width-section {
            display: flex;
            width: 100%;
            height: 760px;
            overflow: hidden;
            padding: 50px 0;
        }

        .left-image-area {
            flex: 0 0 70%;     
            position: relative;
        }

        .left-image-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .right-text-area {
            flex: 0 0 30%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 40px;
            box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
        }

        .text-content {
            width: 100%;           
            text-align: left;    
            color: #ffffff;       
        }

        .text-content a{color:#fff;font-size:18px;text-decoration: underline;text-transform: uppercase;}

        .text-content h2 {
            font-weight: 500;
            font-size: 40px;
            line-height: 1.4;
            letter-spacing: 0;
            text-transform: capitalize;
            color: #fff;
        }

        .text-content p {
            font-size: 16px;
            line-height: 1.6;
            margin: 15px 0;
        }

        @media (max-width: 991px) {
            .full-width-section {
                flex-direction: column;
                height: auto;      
            }

            .full-width-section { padding: 30px 0;}
            
            .left-image-area, 
            .right-text-area {
                flex: 0 0 100%;
                width: 100%;
            }
            .left-image-area {
                height: 300px;     
            }
            .right-text-area {
                padding: 60px 20px; 
            }
        }