* {

    font-family: "Inter", sans-serif;
}

.Campaign {
    padding-top: 80px;
    padding-bottom: 80px;
    background: rgba(207, 240, 220, 1);
}

.container.plants-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    justify-content: space-between;
}

.plants-image img {
    width: 530px;
    height: 530px;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.plants-text {
    flex: 1;
    color: var(--Neutral/Dark, rgba(31, 41, 55, 1));
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.plants-text ul {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1.125rem;
    line-height: 1.5;
    color: #555;
}

.plants-text ul li {
    margin-bottom: 16px;
    font-weight: 500;
}

.Campaign h2 {
    color: var(--Neutral/Dark, rgba(31, 41, 55, 1));
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container.plants-content {
        flex-direction: column; /* Column layout on mobile */
        align-items: center;
        gap: 20px;
        padding: 16px;
    }

    .plants-image img {
        width: 100%; /* Full width on mobile */
        height: auto; /* Maintain aspect ratio */
    }

    .plants-text {
        width: 100%; /* Full width text */
        text-align: center; /* Optional: center text on mobile */
    }

    .plants-text ul {
        padding-left: 20px; /* maintain disc indent */
    }
}
