html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f6f1eb;
    color: #4a3428;
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #6f4e37;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 15px;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #f4d19b;
}


header {
    text-align: center;
    padding: 100px 20px 50px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

/* Form Sections */

.form-section {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.form-section h2 {
    color: #6f4e37;
    margin-top: 0;
}


form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
select,
textarea {
    padding: 10px;
    border: 2px solid #d4b08c;
    border-radius: 8px;
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #6f4e37;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 10px;
}


.button-group {
    display: flex;
    gap: 15px;
}

button {
    background-color: #6f4e37;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

button:hover {
    background-color: #8b5e3c;
    transform: translateY(-2px);
}


footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}