/* 
 * Button Color Standardization
 * This file ensures the "Read More" button hover color matches the "Get In Touch" button
 */

/* Update Read More button hover color to match primary buttons */
.read-more-btn:hover {
    background-color: #2B3990 !important; /* Primary blue color from the style.css */
    color: #ffffff !important;
    border-color: #2B3990 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(43, 57, 144, 0.4), 
                0 0 20px rgba(43, 57, 144, 0.3) !important;
}

/* Ensure the same transition for a smooth effect */
.read-more-btn {
    transition: all 0.3s ease-out !important;
}
