.contact-container {
    padding: 4rem 2rem;
    min-height: 60vh;
}

.email-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-out;
}

.email-link {
    font-size: 2rem;
    color: #2d3436;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    word-wrap: break-word;
    max-width: 100%;
}

.email-link:hover {
    color: #0984e3;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .email-link {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }
    .email-wrapper {
        padding: 2rem 1rem;
        margin: 1rem auto;
    }
}