@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');
/*Basic Style*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5
{
    margin-bottom: 0.5em;
    margin-top: 0.5em;
}

section
{
    margin: 1%;
}

section li
{
    list-style: disc;
    margin-left: 2%;
}

/* Styling the navigation bar */
nav li, a, button
{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    font-style: normal;
}

header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2.5%;
    background-color: #085e5e;
}


.logo
{
    width: 150px;
    height: 50px;
    cursor: pointer;
}

.nav_links
{
    list-style: none;
}

.nav_links li
{
    display: inline-block;
    padding: 0px 20px
}

.nav_links li a
{
    transition: all 0.3s ease 0s;
}

.nav_links li a
{
    color: #dadbd9;
}

button
{
    padding: 9px 25px;
    border: none;
    border-radius: 50px;
    background-color: #e87967;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}

button:hover
{
    background-color: #DF422A;
}

/* Styling the Contact Form */
form
{
    max-width: 95%;
    margin: 1em auto;
    padding: 1%;
    background-color: #085e5e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label
{
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: whitesmoke;
}

/* Styling the input fields and text area */

textarea
{
    resize: vertical;
}

input[type="text"],
input[type="email"],
textarea
{
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.5s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus
{
    border-color: #e87967;
    outline: none;
}

/* Style the Submit Button */
input[type="submit"]
{
    background-color: #e87967;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.5s;
}

input[type="submit"]:hover
{
    background-color: #DF422A;
}