.gardening-page {
    max-width: 1320px;
    margin: 0 auto;
    font-family: "Outfit", sans-serif;
}

.flyer-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    /* border: 1px solid #40A944; */
    background-color: #fcede8;
    margin: 20px auto;

}

.flyer-container .left-section {
    flex: 1;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.flyer-container .right-section {
    flex: 1.2;
    padding: 0px 40px;
    background-color: #fcede8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../images/garden2.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.flyer-container .right-section h2 {
    font-size: 24px;
    color: #0a4c36;
    margin-bottom: 25px;
    line-height: 1.4;
}

.flyer-container .right-section ul {
    list-style: none;
    margin-bottom: 25px;
}

.flyer-container .right-section ul li {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 5px;
}

.flyer-container .right-section ul li strong {
    color: #2e7d32;
}

.flyer-container .right-section .highlight {
    font-size: 17px;
    font-weight: 500;
    color: #0a4c36;
    margin: 25px 0;
    line-height: 1.6;
}

.flyer-container .right-section .contact {
    font-size: 16px;
    line-height: 1.8;
}

.flyer-container .right-section .contact p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.flyer-container .right-section .contact .icon {
    margin-right: 10px;
    font-size: 18px;
}

.flyer-container .right-section .contact .icon img {
    width: 18px;
}

.flyer-container .right-section .contact .contact a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 500;
}

.flyer-container .right-section .contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .flyer-container {
        flex-direction: column;
    }

    .flyer-container .right-section h2 {
        font-size: 20px;
    }

     .flyer-container .right-section{
        margin-top: 50px;
    }

}

@media (max-width: 480px) {
    .right-section {
        padding: 25px 15px;
    }
}