body {
    background-color: lightgray;
    height: 2000px;
    margin: 190px auto;
    font-family: Arial, Helvetica, sans-serif;
}

.head-container {
    background-color: #004634;
    height: 150px;
    width: 90%;
    max-width: 1300px;
    padding: 20px;
    z-index: 5;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    align-items: center;
}

.head-side {
    padding: 5px;
    width: 250px;
    font-size: 25px;
    color: white;
    text-shadow: 1px 1px rgb(0, 0, 0, 0.3);
}

.head-center {
    flex: 1;
    text-align: center;
}

.head-img {
    max-height: 60px;
    display: block;
    margin: 0 0 10px;
}

.nav-list ul {
    list-style: none;
    margin: 15px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-list ul li a{
    text-decoration: none;
    background-color: #10ac80;
    color: white;
    text-shadow: 1px 1px rgb(0, 0, 0, 0.3);
    font-size: 15px;
    padding: 5px;
    margin: 5px;
    height: 20px;
    transition: all 0.2s ease;
    display: inline-block;
    justify-content: center;
    min-width: max-content;
}

.nav-list ul li a:hover {
    background-color: #247460;
    font-weight: bold;
}





.main-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: darkseagreen;
    height: auto;
}

.contact-section {
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 3px solid black;
    padding-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.from-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group select {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #004634;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #10ac80;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}






.footer-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    background-color: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-section p {
    color: #60b6ef;
}














