html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    box-sizing: border-box;
}


/* Section */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.858);
    margin-bottom: 4rem;
}


/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; 
    padding: 16px 32px; 
    border: none;
    border-radius: 12px; 
    font-size: 16px; 
    font-weight: 550; 
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, #2F80ED 0%, #8E44FF 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(47, 128, 237, 0.3);
    transition: all 1s ease;
}

.cta-button.primary:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 15px 40px rgba(47, 128, 237, 0.4);
}

.cta-button.large {
    padding: 15px 48px; 
    font-size: 18px; 
}

