.market-section {
    background-color: #eaad42; /* Updated background color */
    padding: 40px 20px;
    border-radius: 10px;
    margin: 20px 0;
    width: 100%; /* Full width */
}
.market-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff; /* White text for better contrast */
}
.market-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff; /* White text for better contrast */
}
.market-section a {
    font-size: 1rem;
    color: #eaad42; /* Button text color */
    background-color: #fff; /* White button background */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}
.market-section a:hover {
    background-color: #f0f0f0; /* Light gray hover effect */
}
.market-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.text-content {
    text-align: left; /* Align text to the left */
}
.image-content {
    text-align: right; /* Align image to the right */
}
@media (max-width: 767.98px) {
    .image-content {
        text-align: center; /* Center image on smaller screens */
        margin-top: 20px;
    }
    .text-content {
        text-align: center; /* Center text on smaller screens */
    }
}