.my-custom-cta-block {
            border: 1px solid #eee;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background: #f9f9f9;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08); /* More prominent subtle shadow */
            border-radius: 8px; /* Slightly rounded corners for the block */
            overflow: hidden; /* Important for border-radius on nested elements */
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects on the block itself */
        }
        .my-custom-cta-block:hover {
            transform: translateY(-3px); /* Subtle lift effect on hover */
            box-shadow: 0 6px 15px rgba(0,0,0,0.12); /* Increase shadow on hover */
        }
        .my-custom-cta-image {
            flex: 0 0 30%; /* Take 30% width */
            max-width: 30%;
            margin-right: 20px;
            /* No padding here as the frame will provide it */
        }
        .my-custom-cta-image img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 4px; /* Slightly rounded corners for the image itself */
            /* Enhanced Shadow and Frame */
            border: 6px solid #fff; /* A white frame */
            padding: 3px; /* Small inner padding for the frame effect */
            background-color: #fff; /* Ensure background is white if border is transparent */
            box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.05) inset; /* Enhanced shadow + subtle inner line */
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for image hover */
        }
        .my-custom-cta-block:hover .my-custom-cta-image img {
            transform: scale(1.02); /* Slightly zoom image on block hover */
            box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.08) inset; /* Even stronger shadow on hover */
        }
        .my-custom-cta-content {
            flex: 1; /* Take remaining width */
        }
        .my-custom-cta-title {
            font-size: 1.8em;
            margin-top: 0;
            margin-bottom: 10px;
            color: #333;
            line-height: 1.2; /* Improve readability */
        }
        .my-custom-cta-subtitle {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #666;
            font-weight: 400; /* Ensure subtitle is not too bold */
        }
        .my-custom-cta-paragraph {
            margin-bottom: 15px;
            line-height: 1.6;
            color: #444;
        }
        .my-custom-cta-button .button {
            border: none; /* Make sure default border is removed if inline color is applied */
            padding: 12px 25px; /* Slightly larger padding */
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease; /* Smooth transition for hover effects */
            cursor: pointer;
            display: inline-block; /* Ensure it behaves like a block for padding/margins */
            font-weight: 600; /* Make button text a bit bolder */
            letter-spacing: 0.5px; /* Add slight letter spacing */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow on button */
        }
        .my-custom-cta-button .button:hover {
            filter: brightness(1.15); /* Make it brighter on hover */
            transform: translateY(-1px); /* Slight lift for the button itself */
            box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* More prominent shadow on hover */
        }
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .my-custom-cta-block {
                flex-direction: column;
                text-align: center;
                padding: 15px; /* Adjust padding for smaller screens */
            }
            .my-custom-cta-image {
                flex: none;
                max-width: 80%; /* Image takes more width on mobile */
                margin-right: 0;
                margin-bottom: 20px;
                order: -1; /* Place image above text on mobile */
            }
            .my-custom-cta-image img {
                width: 100%; /* Ensure image fills its container */
            }
            .my-custom-cta-content {
                width: 100%; /* Content takes full width */
            }
        }