.contact-container {
    display: flex;
    gap: 40px;
    padding: 60px 8%;
    align-items: stretch; /* makes both columns same height */
    background-color: rgb(226, 224, 221);
}

.contact-left {
    flex: 0 0 25%; /* 1/4 width */
}

.contact-left img {
    width: 100%;
    height: 100%; /* fill the container height */
    border-radius: 6px;
    object-fit: cover; /* scales image without distortion */
}

.contact-right {
    flex: 1; /* 3/4 width */
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 10px;
}

.corner-line {
    width: 35px;
    height: 5px;
    background: #e0b800;
    position: absolute;
    top: -10px;
    left: 0;
}

.contact-subtext {
    color: #444;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group.full {
    flex: 100%;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
}

input, select, textarea {
    border: none;
    border-bottom: 2px solid #e0b800;
    padding: 10px 4px;
    background: none;
    font-size: 15px;
}

textarea {
    height: 130px;
}

.checkbox-row span {
    font-size: 14px;
    margin-left: 8px;
}

.send-btn {
    background: #e0b800;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.send-btn:hover {
    background: #e0b800;
}

.privacy-link{
    color: #e0b800;;
    text-decoration: underline;
}

.terms-link{
    color: #e0b800;;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 100%;
    }

    .contact-left img {
        height: auto; /* reset height on mobile */
        margin-bottom: 20px;
    }
}
