.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    background-color: white;
}

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

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    outline: none;
    border-color: goldenrod;
    box-shadow: #f7b016;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button {
    background-color: orange;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.5s;
}

button:hover {
    background-color: #f7b016;
}

.success-message, .error-message {
    display: none;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.loading {
    display: none;
    text-align: center;
    margin-top: 1rem;
}