body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 640px;
    margin-top: 20px;
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

p {
    color: #555;
    line-height: 1.5;
}

/* Inquiry type selection list */
.inquiry-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.inquiry-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    text-align: left;
    color: #333;
    transition: background-color 0.15s, border-color 0.15s;
}

.inquiry-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

/* Yes/No choice buttons */
.choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.choice-btn {
    display: block;
    width: 100%;
    padding: 14px 16px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.15s;
    box-sizing: border-box;
}

.choice-btn:hover {
    background-color: #0056b3;
}

/* Info box for redirect messages */
.info-box {
    background-color: #e7f3ff;
    border: 1px solid #b6d4fe;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 16px 0;
}

.info-box p {
    color: #084298;
    margin: 0 0 8px 0;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Primary action button / link */
.btn-primary {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.15s;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Back button */
.btn-back {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    transition: background-color 0.15s, color 0.15s;
    margin-top: 8px;
}

.btn-back:hover {
    background-color: #f8f9fa;
    color: #495057;
}

/* Note text */
.note {
    font-size: 13px;
    color: #6c757d;
    margin-top: 12px;
}

.note a {
    color: #007bff;
}

/* Form elements */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="date"],
input[type="file"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
}

textarea {
    resize: vertical;
}

input[type="file"] {
    padding: 6px;
}

small {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 13px;
}

button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.15s;
    display: block;
    width: 100%;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Flash messages */
.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

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

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