@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #FEFAE0;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    
    width: 100%;
}

header .logo {
    text-decoration: none;
    color: inherit;
}

header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    color: #BC6C25;
    margin-left: 50px;
}
.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #BC6C25;
    font-weight: 900;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px 15px;
}

.nav-links a:hover {
    color: #DDA15E;
}
hr {
    margin: 20px;
    color: #283618;
}

section {
    width: 80%;
    margin: 20px auto;
    text-align: center;
    background-color: #FEFAE0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h3 {
    color: #333;
    font-family: 'Arial', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #BC6C25;
    color: #FEFAE0;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

p {
    margin-top: 15px;
    font-size: 14px;
}

a {
    color: #BC6C25;
    text-decoration: none;
}
footer {
    text-align: center;
    margin-top: 20px;
    background-color: #283618;
    color: white;
    width: 100%;
    padding: 10px;
    position: absolute;
    bottom: 0;
}