/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #302d41, #1a6f8a);
    color: #fff;
}

/* Navbar Styling */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: transparent;
    box-shadow: none;
}

.nav {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    border-radius: 10px;
}

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

.nav-links li {
    display: inline;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
    font-size: 18px;
    padding: 10px 15px;
    display: block;
}

.nav-links li a:hover {
    color: #2596be;
}

/* Contact Section Styling */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    background: transparent;
    border-radius: 10px;
    margin: 20px;
}

.contact-description {
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Form Styling */
#form-ui {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.form {
    position: relative;
    background-color: #302d41;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Input Fields */
.input, .textarea {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #1a6f8a;
    background-color: transparent;
    color: #fff;
    font-family: Arial, sans-serif;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.input:focus, .textarea:focus {
    border-color: #2596be;
    outline: none;
}

.input::placeholder, .textarea::placeholder {
    color: #b0c4de;
}

/* Submit Button */
.button {
    width: 100%;
    padding: 12px;
    background: #2596be;
    color: #fff;
    border: 2px solid transparent;
    border-radius: 5em;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.button:hover {
    border: 2px solid #1a6f8a;
    background: transparent;
    color: #1a6f8a;
}

/* Footer Styling */
.footer {
    background: transparent;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 14px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
