/* New simple CTA button - guaranteed to work */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00509D, #00AEEF);
    color: #FFFFFF;
    font-family: 'Glacial Indifference', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.5);
    position: relative;
    z-index: 999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(0, 174, 239, 0.8);
}

.cta-button:active {
    transform: translateY(-1px);
}