.have-your-say-section {
    background-color: #FFFFFF; /* White background */
    padding: 80px 0; /* Vertical padding */
}

.have-your-say-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5vw; /* Gap between columns */
    max-width: 100%;
    margin: 0 auto; /* Centers the content */
}
.have-your-say-text h2 {
    color:#FABC01!important;
}
.have-your-say-image, .have-your-say-text {
    align-items: center; /* Aligns content vertically */
}
.have-your-say-text {
    flex-basis: 40%; /*  column takes 20% of the container's width */
    text-align: left; /* Left aligns the text in the second column */
    line-height:30px;

}
.have-your-say-image {
    flex-basis: 20%; /*  column takes 20% of the container's width */
    text-align: right; /* Left aligns the text in the second column */

}
.have-your-say-image img {
    width: 60%; /* Allows image to be responsive within its column */
    max-width: 100%; /* Ensures image does not overflow its container */
    height: auto;
    border-radius: 20px; /* Optional: Adds rounded corners to the image */
}

.have-your-say-button {
    margin-top:5%;
    text-transform:uppercase;
    color:#29AC50;
    background-color:transparent;
    padding:11px 17px;
    border-radius:100px;
    letter-spacing:20%;
    font-weight:500;
    font-size:16px;
    border:2px #29AC50 solid;
}
.have-your-say-button:hover {
    text-decoration:none;
    background-color: #29AC50;
    color:white;
}

@media (max-width: 768px) {
    .have-your-say-image, .have-your-say-text {
        flex-basis: 100%; /* Stacks the columns vertically on smaller screens */
        text-align:center;
    }
    .have-your-say-section  {
        padding:80px 10vw;
    }
    .have-your-say-image img {
        width:20%;
    }
}