/* General Body Style */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1F1F1F;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body takes up the full viewport height */
}

/* Main Content Wrapper */
main {
    flex-grow: 1; /* Ensure the main content grows to fill available space */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Form Container */
.contact-form {
    background-color: #2C2C2C;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

/* Heading Styles */
h1 {
    color: #00ADB5;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Input and Button Styles */
input, textarea {
    background-color: #2a2a2a;
    color: #E8E8E8;
    border: 1px solid #00ADB5;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
}

input::placeholder, textarea::placeholder {
    color: #ccc;
}

.btn-primary {
    background-color: transparent;
    color: #00ADB5;
    border: 2px solid #00ADB5;
    text-transform: uppercase;
    width: 100%;
    padding: 10px;
}

/* Button Hover Effect */
.btn-primary:hover {
    background-color: #00ADB5;
    color: #000;
}

/* Navigation Bar */
nav {
    width: 100%;
    background-color: #2C2C2C;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.logo h2 {
    color: #00ADB5;
    font-size: 24px;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #E8E8E8;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #00ADB5;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #393E46;
    color: #E8E8E8;
    border-top: 1px solid #E8E8E8;
    margin-top: auto; /* Ensure footer sticks to the bottom when content is short */
}

footer img {
    width: 35px;
    height: 35px;
    margin: 0 10px;
}

.form-label {
    color: #E8E8E8;
    margin-bottom: 0.5rem;
}