/* RFQ Section Styling */
.rfq-section {
    display: flex;
    padding: 60px;
    background: url(https://img2.tradewheel.com/template1/images/homepage/banner-rfq-wrappern.jpg.webp);
    background-size: cover;
    background-position: top right;
    color: #fff;
    gap: 40px;
}

.rfq-text {
    flex: 1;
    padding: 20px;
}

.rfq-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.rfq-text ol {
    list-style-type: none;
    padding: 0;
}

.rfq-text li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

/* Form Container Styling */
.rfq-form-container {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent for a soft overlay */
    padding: 20px;
    margin-right: 200px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Listing Section Styling */
.listing-section h4 {
    text-align: center;
    margin-bottom: 20px;
}

/* Form Row Setup */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-row textarea {
    padding: 10px 0 10px 10px;
    border: solid 1px #ccc;
    width: calc(100% - 25px);
    resize: none;
    height: 90px;
}

/* Button Styling */
.submit-join {
    width: 30%;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.submit-join:hover {
    background-color: #555;
}

.bo-link {
    color: #000; /* Black text color */
}
/* Responsive Design */
@media (max-width: 768px) {
    .rfq-section {
        flex-direction: column;
        align-items: center;
    }

    .rfq-text, .rfq-form-container {
        width: 100%;
        padding: 20px;
    }
}
