.feedback-section {
    padding: 0 var(--container-pad);
}

.feedback__inner {
    display: flex;
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
    max-width: var(--container);
    margin: 0 auto;
}

.feedback__form-side {
    flex: 0 0 55%;
    padding: 60px;
    background: var(--blue);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feedback__form-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><rect width="20" height="20" fill="none"/><path d="M0 10h20M10 0v20" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    pointer-events: none;
}

.feedback__image-side {
    flex: 1;
    position: relative;
}

.feedback__image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .feedback__inner {
        flex-direction: column;
    }

    .feedback__form-side {
        flex: none;
        padding: 40px 20px;
    }

    .feedback__image-side {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 0;
    }

    .feedback__inner {
        border-radius: 0;
    }

    .feedback__form-side {
        padding: 50px 15px;
        background-color: #225179;
    }
}
