       h6 {
            padding-top: 45px;
            padding-bottom: 45px;
            padding-left: 9%;
            padding-right: 9%;
            color: #ffffff;
            text-align: left;
            font-size: 3rem;
            font-weight: 400;
            margin: 30px auto;
            text-transform: none;
            background-size: 55px 55px; 
            background-image: repeating-linear-gradient(180deg, #212121 0 0.5px, transparent 1px 55%);
            background-position: 0 0, 0 0;
        }
        @media (max-width: 375px) {
        h6 {
            font-size: 1.21rem;
        }
        }
        @media (max-width: 415px) {
        h6 {
            font-size: 1.75rem;
        }
        }
        @media (min-width: 416px) and (max-width: 515px) {
        h6 {
            font-size: 2.15rem;
        }
        }
        @media (min-width: 516px) {
        h6 {
            font-size: 3rem;
        }
        }
        .content-section {
            display: flex;
            margin: 30px 0;
            flex-wrap: wrap;
            background-color: transparent;
            overflow: hidden;
            position: relative;
            min-height: 245px;
            height: 55.75%;
            border-top: 1px solid #303030;
            border-bottom: 1px solid #303030;
        }
        .image-container {
            flex: 1 1 45%;
            position: relative;
            overflow: hidden;
        }
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }
        .text-content {
            flex: 1 1 55%;
            padding: 45px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }
        .text-content p {
            font-size: 1.05rem;
            color: #ffffff; 
            margin-bottom: 15px;
        }
        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .image-container::after {
            background: linear-gradient(to right, 
                        rgba(0, 0, 0, 0) 0%, 
                        rgba(0, 0, 0, 0.5) 75%,
                        rgba(0, 0, 0, 0.9) 100%);
        }
        @media (max-width: 745px) {
            .content-section {
                flex-direction: column;
                min-height: auto;
            }
            .image-container, .text-content {
                flex-basis: 100%;
                min-width: unset;
            }
            .image-container::after {
                background: none !important; 
            }
        }
        @media (max-width: 475px) {
            .text-content {
                padding: 21px;
            }
            .text-content p {
                font-size: 1rem;
            }
        }