/*natrual section */
.natural-products-section {
    background-color: #f4f4f400;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    max-width: 700px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-family: "Titillium Web";
    font-size: 1.1rem;
    color: #4f4f4f;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-list {
    font-family: 'BlairITCStdRegular', sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    color: #388e3c;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.benefits-list li::before {
    content: "🍃";
    margin-right: 10px;
    font-size: 1rem;
}

/*brand section */
.brands-section {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background-color: #f1f8e9;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.brands-title {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 10px;
    font-weight: 700;
}

.brands-description {
    font-size: 1rem;
    color: #4f4f4f;
    margin-bottom: 20px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-logo {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintains aspect ratio */
    filter: grayscale(80%);
    border-radius: 15px; /* Adds curved borders */
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1); /* Pop-out effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Shadow effect */
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .brands-logos {
        gap: 15px; /* Adjust gap for smaller screens */
        min-width: 100px;
        min-height: 93px;
    }

    .brand-logo {
        width: 100px; /* Keep the width consistent */
        min-width: 100px;
        min-height: 93px;
    }
}