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

header {
    background: #f0e5d0;
    border-bottom: 2px solid #ccc;
    padding: 1.5em 1em;
    text-align: center;
}

.logo {
    width: 300px;
    margin-bottom: 0.5em;
}

header h1 {
    font-size: 1.6em;
    margin: 0.3em 0;
}

nav {
    margin-top: 0.5em;
}

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

nav a:hover {
    text-decoration: underline;
}

.top-action {
    text-align: center;
    margin: 2em 0 1em;
}

.cta-button {
    display: inline-block;
    background: #c0392b;
    color: white;
    padding: 1em 2em;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #a83227;
    transform: scale(1.02);
}

main {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 1.5em;
    max-width: 700px;
    margin: 2em auto;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 0.6em;
    margin: 0.5em 0 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

button {
    background: #b93221;
    color: white;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #992317;
}

footer {
    background: #f0e5d0;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
    color: #888;
    margin-top: 3em;
}

a {
    color: #2d5aac;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
