body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background: url('/static/images/background.jpeg') no-repeat center center fixed;
    background-size: cover;
}


header {
    background: #8B4513 !important;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
nav a:hover {
    color: #ffb347;
}
.animated-section {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    background: rgba(255,255,255,0.65);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeInUp 1s;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
form input, form select, form textarea {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
form button {
    background: #2d3e50;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}
form button:hover {
    background: #ffb347;
    color: #222;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #50382d;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}
