/* About Hero Section */
.about-hero {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.about-left {
    flex: 1;
    padding-top: 2.5rem;
}

.about-left h2 {
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.about-left p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-right {
    flex: 0 0 auto;
    padding: 0 0 30px 30px;
}

.about-image-wrapper {
    position: relative;
    width: 280px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: #d4b896;
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
}

/* Feedback Section */
.feedback-section {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    margin-top: 2rem;
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
}

.feedback-section h2 {
    font-weight: bold;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.feedback-section > p {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-form {
    max-width: 1000px;
    margin: 0 auto;
}

.feedback-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feedback-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid #666;
    background: white;
    font-size: 0.95rem;
    font-family: var(--font-family);
    outline: none;
}

.feedback-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #666;
    background: var(--background-light);
    font-size: 0.95rem;
    font-family: var(--font-family);
    min-height: 160px;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .about-hero {
        flex-direction: column-reverse;
    }

    .about-right {
        width: 100%;
        padding: 0 0 20px 20px;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .feedback-row {
        flex-direction: column;
    }
}
