        .border-solid {
            border: 5px solid pink;
        }

        .custom-box {
            border-radius: 100px;
            overflow: hidden;
            background: transparent;
        }

        .left-box {
            background-color: #b4a8e3;
            border-top-left-radius: 100px;
            border-bottom-left-radius: 100px;
        }

        .right-box {
            background-color: #ffc2d6;
            border-top-right-radius: 100px;
            border-bottom-right-radius: 100px;
        }

        h2 {
            font-weight: 800;
        }

        .bg-image-shadow {
            background-image: url('../img/bg-image.png');
            background-position: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            /* Shadow effect */
        }

        .bg-image-shadow .overlay {
            background-color: rgba(0, 0, 0, 0.5);
            /* dark overlay */
            z-index: 0;
        }

        .highlight-text {
            text-align: center;
            color: #FF0365;
            font-weight: bold;
            font-size: 2.5rem;
            margin: 2rem 0;
        }

        .container-box {
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .image-col {
            padding: 20px;
        }

        .image-col img {
            width: 80%;
            height: auto;
            border-radius: 8px;
        }

        .text-col {
            background-color: #e6e6fa;
            padding: 30px;
        }

        .text-col h4 {
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .text-col p {
            color: #444;
            font-size: 16px;
            line-height: 1.6;
        }

        .custom-para{
            -webkit-text-stroke: medium;
        }