/* 
Respyre Brand Colors 
*/
:root {
    --respyre-cream: #F3EEE6;
    --respyre-green-1: #42774E;
    --respyre-green-2: #589852;
    --respyre-light-green-1: #73AD6E;
    --respyre-light-green-2: #9BC197;
    --respyre-yellow: #FBD996;
    --respyre-font-dark: #4D4D4D;
    --white: #FFFFFF;
}

body {
    background-color: var(--respyre-cream);
    color: var(--respyre-font-dark);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Clean, modern sans-serif */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    margin-bottom: 40px;
    text-align: center;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--respyre-green-1);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: var(--respyre-font-dark);
    opacity: 0.8;
}

.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(66, 119, 78, 0.05);
    /* Very subtle shadow using brand green */
    border: 1px solid rgba(66, 119, 78, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--respyre-green-1);
}

textarea,
input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--respyre-light-green-2);
    border-radius: 4px;
    background-color: var(--white);
    color: var(--respyre-font-dark);
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

textarea:focus,
input[type="text"]:focus {
    outline: none;
    border-color: var(--respyre-green-1);
}

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

button.submit-btn {
    background-color: var(--respyre-green-1);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

button.submit-btn:hover {
    background-color: var(--respyre-green-2);
}

.feedback-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid var(--respyre-light-green-2);
}

.feedback-section h2 {
    font-size: 20px;
    color: var(--respyre-green-1);
    margin-bottom: 20px;
}

/* Markdown Content Styling */
.feedback-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--respyre-light-green-2);
}

.feedback-content h1,
.feedback-content h2,
.feedback-content h3 {
    color: var(--respyre-green-1);
    margin-top: 24px;
    margin-bottom: 12px;
}

.feedback-content h1:first-child,
.feedback-content h2:first-child {
    margin-top: 0;
}

.feedback-content p {
    margin-bottom: 16px;
}

.feedback-content ul,
.feedback-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.feedback-content li {
    margin-bottom: 8px;
}

.feedback-content strong {
    color: var(--respyre-green-1);
}

.error-banner {
    background-color: var(--respyre-cream);
    border: 1px solid var(--respyre-yellow);
    border-left: 4px solid var(--respyre-yellow);
    color: var(--respyre-font-dark);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 15px;
}