/* General Styles */
body {
    font-family: Viga, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 0;
    margin: 0;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h2 {
    color: #2c3e50;
    margin-top: 0;
    text-align: center;
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

label {
    display: white;
    margin-bottom: 5px;
    font-weight: bold;
}

label.required:after {
    content: " *";
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

/* Button Styles */
.submit-btn {
    background-color: #492D7F;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #be95ff;
}

.request-btn {
    background-color: #492D7F;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.request-btn:hover {
    background-color: #be95ff;
}

/* Confirmation Message */
.confirmation-message {
    display: none;
    padding: 20px;
    background-color: #e8f8f5;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    border: 1px solid #a3e4d7;
}

.confirmation-message h3 {
    color: #27ae60;
    margin-top: 0;
}