body{
font-family: Arial, sans-serif;
background:#e8f5ee;
margin:0;
padding:0;
}

h1{
text-align:center;
margin-top:30px;
color:#2d6a4f;
}

nav{
text-align:center;
margin:20px 0;
}

nav a{
margin:0 10px;
text-decoration:none;
color:#2d6a4f;
font-weight:bold;
}

nav a:hover{
color:#40916c;
}

.card{
background:white;
max-width:600px;
margin:40px auto;
padding:30px;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.1);
}

form{
display:flex;
flex-direction:column;
gap:12px;
}

label{
font-weight:bold;
color:#344e41;
}

input,select,textarea{
padding:10px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

input:focus,select:focus,textarea:focus{
border-color:#40916c;
outline:none;
}

textarea{
min-height:80px;
}

button{
padding:12px;
border:none;
border-radius:8px;
background:#2d6a4f;
color:white;
font-weight:bold;
cursor:pointer;
}

button:hover{
background:#40916c;
}

footer{
text-align:center;
margin-top:40px;
padding:20px;
background:#2d6a4f;
color:white;
}