/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #14161e; /* Dark background color */
    color: white; /* Text color */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #14161e; /* Dark background for header */
    border-bottom: 0.2vw solid rgb(34, 34, 59); /* Border color */
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    color: white;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white; /* Link color */
    text-decoration: none;
    font-size: 1em;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Contact Hero Section */
.contact-hero {
    background-color: rgb(34, 34, 59); /* Background color for hero section */
    padding: 50px 20px;
    text-align: center;
}

.contact-hero-content h1 {
    margin: 0;
    font-size: 2em;
}

.contact-hero-content p {
    font-size: 1.2em;
}

/* Contact Form Section */
.contact-form {
    background-color: #14161e; /* Dark background for form section */
    border: 0.2vw solid rgb(34, 34, 59); /* Border color */
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 8px;
}

.contact-form h2 {
    color: white;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid rgb(34, 34, 59); /* Border color for input fields */
    border-radius: 4px;
    background-color: #1e202a; /* Slightly lighter background for inputs */
    color: white;
}

.contact-form button.cta {
    background-color: rgb(34, 34, 59); /* Background color for button */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.contact-form button.cta:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: rgb(34, 34, 59); /* Dark background for footer */
    color: white;
    text-align: center;
    padding: 10px;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2em; /* Adjust logo size */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .contact-hero-content h1 {
        font-size: 1.5em; /* Adjust heading size */
    }

    .contact-hero-content p {
        font-size: 1em; /* Adjust paragraph size */
    }

    .contact-form {
        padding: 15px;
    }

    .contact-form button.cta {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}
