/* RFQ Section Styling */
.buy-section {
    display: flex;
    padding: 150px;
    background: url(https://img2.tradewheel.com/template1/images/buyer-page-top-banner.png.webp);
    background-size: cover;
    background-position: top right;
    color: #fff;
}

/* Details Section */
.details-section {
    display: flex;
    gap: 20px;
    background-color: #f8f8f8;

}

/* Left Section Styling */
.details-left {
    flex: 3;
    padding: 20px;
    background: #f8f8f8;
}

.details-left h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.details-left p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.details-left a {
    color: #f06924;
    text-decoration: none;
}

.details-left a:hover {
    text-decoration: underline;
}

.details-left h3 {
    font-size: 16px;
    margin-top: 20px;
    color: #f06924;
}

.details-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.details-buttons button {
    padding: 10px 20px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.submit-request {
    background-color: #007bff;
}

.submit-request:hover {
    background-color: #0056b3;
}

/* Right Section Styling */
.details-right {
    flex: 1;
    padding: 20px;
    background: #f8f8f8;

}

.details-right h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.details-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-right li {
    margin-bottom: 8px;
}

.details-right a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.details-right a:hover {
    text-decoration: underline;
}

/* Related Buy Offers Section */
.related-buy-offers {
    margin-top: 20px;
    padding: 30px;
    background-color: #f8f8f8;
}

.related-buy-offers h2 {
    font-size: 20px;
    color: #333;
    text-align: left;
}

/* Single Buy Offer Styling */
.buy-offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border: 3px solid #efeeee;
}

.buy-offer-left {
    display: inline-block;
    width: calc(99% - 180px);
    border-right: 1px solid #e7e7e7;
    padding-right: 15px;
    vertical-align: top;
}

.buy-offer-left h3 {
    font-size: 18px;
    color: #344e69;
    margin-bottom: 10px;
}

.buy-offer-left h3:hover {
    color: #d8571e;
}

.buy-offer-left p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
    line-height: 1.5;
}

.buy-offer-left strong {
    color: #333;
}

/* Contact Buyer Button */
.buy-offer-right {
    display: inline-block;
    width: 180px;
    text-align: center;
    vertical-align: top;
}

.contact-buyer {
    padding: 10px 20px;
    background-color: #f06924;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.contact-buyer:hover {
    background-color: #d8571e;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .buy-offer {
        flex-direction: column;
        align-items: flex-start;
    }

    .buy-offer-left {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .buy-offer-right {
        text-align: left;
    }
}

/* Call-to-Action Text */
.cta {
    margin-top: 20px; /* Add space above the CTA */
    background-color: #f8f8f8; /* Light background color */
    text-align: left; /* Center the text */
}

.cta p {
    margin: 0;
    font-size: 14px;
    color: #333; /* Dark gray text */
    line-height: 1.6; /* Space between lines */
}

.cta-link {
    color: #007bff; /* Blue link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Emphasize the links */
    transition: color 0.3s; /* Smooth color transition */
}

.cta-link:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline; /* Add underline on hover */
}

