.email-box{
    background: #ffffff;
    border: 2px solid #2e8b57;
    border-left: 6px solid #2e8b57;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    max-width: 400px;
}

.email-box:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.email-box h5{
    margin: 0 0 15px;
    color: #2e8b57;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
}

.email-box a{
    display: block;
    color: #222;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.email-box a:hover{
    color: #2e8b57;
}