/* General Reset */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f9;
    color: #333;
}

.contact-card {
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.contact-card h1 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #222;
}

.contact-card .email, .contact-card .phone {
    margin: 10px 0;
    font-size: 1rem;
}

.contact-card a {
    text-decoration: none;
    color: #007bff;
}

.contact-card a:hover {
    text-decoration: underline;
}
