/* Wholesale Section */
:root {
    --primary: #2e7d32;
    --secondary: #ff8f00;
    --accent: #8bc34a;
    --light: #f9f5e9;
    --dark: #1b3a1b;
    --gray: #f0f0f0;
}

.wholesale {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.wholesale .section-title {
    color: white;
}

.wholesale .section-title::after {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta-button {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1b5e20;
}

.benefit-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #1b5e20;
}



/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}