
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    max-width: 450px;
    width: 90%;
}

.logo {
    width: 350px;
    margin-bottom: 25px;
}

h1 {
    font-size: 34px;
    color: #7d9256;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #7d9256;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #667f47;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #5c5c5c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #444;
}

#captchaQuestion {
    font-weight: bold;
    margin-top: 5px;
}
