/* Producer Hero Section */
.producer-hero {
    text-align: center;
    padding: 60px 20px; /* Increased padding for better spacing */
    background-color: #f9f9f9;
    border-bottom: 2px solid #036308;
    margin-bottom: 40px; /* Added margin to create more separation */
}

.producer-hero .producer-logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto; /* Increased spacing below logo */
}

.producer-hero h2 {
    font-size: 2.2rem; /* Slightly increased font size */
    color: #036308;
    margin-bottom: 15px; /* Increased margin */
}

.producer-hero p {
    font-size: 1.3rem; /* Increased font size for readability */
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

/* Producer Content Sections */
.producer-content {
    max-width: 1000px;
    margin: 60px auto; /* Increased margin for better section separation */
    padding: 0 25px; /* Slightly increased padding */
}

.producer-content h2 {
    font-size: 1.9rem; /* Slightly larger headings */
    color: #036308;
    margin-bottom: 20px; /* More spacing below heading */
    border-bottom: 2px solid #036308;
    padding-bottom: 7px; /* Added more padding below the underline */
}

.producer-content p {
    font-size: 1.2rem;
    line-height: 1.8; /* Increased line height for better readability */
    color: #444;
    margin-bottom: 25px; /* Increased spacing between paragraphs */
}

/* Product Offerings */
.producer-products {
    margin-bottom: 50px; /* More spacing before the next section */
}

.producer-products ul {
    list-style-type: none;
    padding: 0;
}

.producer-products ul li {
    font-size: 1.2rem;
    padding: 12px 0; /* Increased padding for better spacing */
    border-bottom: 1px solid #ddd;
}

.producer-products ul li strong {
    color: #036308;
}

/* Pickup Locations */
.producer-locations {
    margin-bottom: 50px; /* More spacing before the next section */
}

/* Pickup Locations */
.producer-locations ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.producer-locations ul li {
    font-size: 1.1rem;
    background-color: #036308;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
}

/* Styling for Links in Pickup Locations */
.producer-locations ul li a {
    color: white; /* Makes text white */
    text-decoration: none; /* Removes underline */
    font-weight: bold;
    display: flex; /* Allows full button to be clickable */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Hover Effect */
.producer-locations ul li:hover {
    background-color: #024d06; /* Darker green on hover */
}


/* Benefits Section */
.producer-benefits {
    margin-bottom: 50px; /* More spacing before the next section */
}

.producer-benefits ul {
    list-style-type: none;
    padding: 0;
}

.producer-benefits ul li {
    font-size: 1.2rem;
    padding: 12px 0; /* Increased spacing */
    border-bottom: 1px solid #ddd;
}

.producer-benefits ul li strong {
    color: #036308;
}

/* Call-to-Action Buttons */
.btn-highlight {
    display: inline-block;
    background-color: #036308;
    color: white;
    padding: 15px 25px; /* More padding for a larger button */
    font-size: 1.3rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px; /* More spacing above button */
    transition: background-color 0.3s ease;
}

.btn-highlight:hover {
    background-color: #024d06;
}

/* Responsive Design */
@media (max-width: 768px) {
    .producer-hero h2 {
        font-size: 1.9rem;
    }

    .producer-hero p {
        font-size: 1.2rem;
    }

    .producer-content {
        padding: 0 20px;
    }

    .producer-content h2 {
        font-size: 1.7rem;
    }

    .producer-content p {
        font-size: 1.1rem;
    }

    .producer-products ul li,
    .producer-benefits ul li {
        font-size: 1.1rem;
    }

    .producer-locations ul {
        flex-direction: column;
        align-items: center;
    }

    .producer-locations ul li {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .producer-hero {
        padding: 50px 15px;
    }

    .producer-hero .producer-logo {
        max-width: 200px;
    }

    .producer-hero h2 {
        font-size: 1.7rem;
    }

    .producer-hero p {
        font-size: 1.1rem;
    }

    .btn-highlight {
        font-size: 1.1rem;
        padding: 12px 18px;
    }
}
