/* ==========================================================================
   Buttons
   - Reusable button styles for the entire site.
   ========================================================================== */

.cta-button {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #0077ED;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 113, 227, 0.2);
} 