<!-- start Simple Custom CSS and JS -->
<style type="text/css">
 .containers-custom {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
        }

        .tabs-custom {
            width: 30%;
            padding: 30px;
        }

        .tab-title-custom {
            display: block;
            padding: 13px 0;
            color: #1E5190;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
        }

        .tab-title-custom.active-custom {
            color: #1E9ED8;
        }

        .tab-title-custom:hover {
            color: #1E9ED8;
        }

        .content-section-custom {
            width: 100%;
            background-color: #f9f9f9;
            padding: 0px;
            max-height: 600px;
            background-size: cover;
            background-position: center;
            display: none;
            position: relative;
            color: #000;
        }

        .content-section-custom.active-custom {
            display: block;
        }

        .flex-wrapper-custom {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }

        .text-container-custom {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50%;
            background-color: #1E9ED8;
            padding: 40px;
            text-align: left;
            border-radius: 0 50px 0 0;
            animation: slideUp-custom 0.5s ease-out forwards;
        }

        .text-container-custom h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .text-container-custom p {
            font-size: 18px;
            line-height: 1;
            color: #ffffff;
        }

        .text-container-custom a {
            display: inline-block;
            margin-top: 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            color: #ffffff;
            padding: 10px 20px;
            background-color: #9fc847;
            border-radius: 25px;
            text-align: center;
        }

        .text-container-custom a span {
            display: block;
            line-height: 1.2;
        }

        .text-container-custom a::after {
            content: '';
            font-size: 0;
        }

        @keyframes slideUp-custom {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }</style>
<!-- end Simple Custom CSS and JS -->
