.button {
            display: inline-block;
            background: #00aec3;
            color: white;
            padding: 18px 45px;
            text-decoration: none;
            font-family: 'Encode Sans', sans-serif;
            font-weight: 600;
            font-size: 1.2em;
            border-radius: 50px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            margin: 15px 0;
            letter-spacing: 0.5px;
        }

.button:hover {
            background: #74c9e3;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 174, 195, 0.4);
        }

.button::after {
            content: " →";
            font-size: 1.2em;
        }

.button-text {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            margin-top: 12px;
            color: #838383;
        }
        
.email-link {
            color: #00aec3;
            font-weight: 700;
            text-decoration: none;
            transition: color 0.3s ease;
        }