.custom-cta {
    border: 2px solid #0073aa;
    padding: 1rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 4px;
}

.custom-cta-image {
    flex: 0 0 150px;
    margin-right: 1rem;
}

.custom-cta-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-cta-text {
    flex: 1;
}

.custom-cta-text h3 {
    margin: 0 0 0.5rem;
    color: #0073aa;
}

.custom-cta-text p {
    margin: 0 0 1rem;
    color: #555;
}

.custom-cta .cta-button {
    background: #0073aa;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

.custom-cta .cta-button:hover {
    background: #005177;
}

@media (max-width: 600px) {
    .custom-cta {
        flex-direction: column;
    }
    
    .custom-cta-image {
        margin-right: 0;
        margin-bottom: 1rem;
        flex: 0 0 auto;
    }
}