/* contact.css */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    padding: 1.5em 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5em 1em;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #007bff;
    border-radius: 5px;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 4em 2em;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 4em auto;
    border-radius: 10px;
}

#contact h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 1em;
}

#contact p {
    font-size: 1.2em;
    margin-bottom: 2em;
    line-height: 1.6;
    color: #666;
}

#contact a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75em 1.5em;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

#contact a:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 1em;
}
