
/* Question Form */
.feedback {
    margin-bottom: var(--margin);
}

.feedback .feedback-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: var(--margin-small);
}

.feedback .feedback-inner > section {
    flex-basis: calc(50% - 1em);
    align-self: stretch;
}

.feedback .feedback-inner > section > form {
    height: 100%;
}

.question-section {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    padding: var(--padding);
    box-shadow: 0 10px 40px var(--shadow);
}

.question-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4em;
    text-align: center;
    margin-bottom: var(--margin-small);
}

.question-form {
    max-width: 600px;
    margin: 0 auto;
}

.question-input {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--beige);
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.question-input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--primary-brown) 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    margin-top: 1em;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}


.check {
    font-size: 1.4em;
    font-family: 'Outfit', sans-serif;
}
.check strong {
    display: block;
    margin-bottom: .1em;
}

@media (max-width: 768px) {

    .feedback {
        margin-bottom: var(--margin-phone);
    }

   .feedback .feedback-inner {
        gap: 1rem;
    }
    
    .feedback .feedback-inner {
        grid-template-columns: 1fr;
    }

    .question-section {
        padding: var(--padding-small-phone);
    }

    .question-section h2 {
        font-size: 1.2em;
        margin-bottom: 1em;
    }

}