body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
}
.section-padding {
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem; /* py-12 */
}
@media (min-width: 1024px) {
    .section-padding {
        padding-top: 6rem; /* lg:py-24 */
        padding-bottom: 6rem; /* lg:py-24 */
    }
}
.btn-primary {
    background-color: #4C8302; /* A shade of green for primary actions */
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #5ea202; /* Darker green on hover */
}
.icon-box {
    background-color: white;
    border-radius: 0.5rem;
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
}
.icon-box svg {
    color: #4C8302; /* Green color for icons */
    width: 2.25rem; /* w-9 */
    height: 2.25rem; /* h-9 */
}
.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #4C8302;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item::after {
    content: '';
    position: absolute;
    left: 0.45rem;
    top: 1.5rem;
    bottom: -2.5rem;
    width: 2px;
    background-color: #d1d5db; /* gray-300 */
}
.timeline-item:last-child::after {
    display: none;
}
.testimonial-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Darker overlay for text readability */
    border-radius: 0.75rem;
}
/* Custom styles for icons from Lucide React, using inline SVG for demonstration */
.lucide {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Green marker underline for headers */
.green-marker-underline {
    position: relative;
    display: inline-block; /* Ensures the underline only spans the text */
    padding-bottom: 0.25rem; /* Space between text and line */
}
.green-marker-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px; /* Thickness of the line */
    background-color: #4C8302; /* Green color */
    border-radius: 2px; /* Rounded corners for the line */
}

/* Hero Banner from Wholesale Page */
.hero-banner {
    color: white; /* Text color for content on hero */
    text-align: center;
    padding: 100px 20px;
    position: relative;
    height: 700px; /* Changed height as requested */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    z-index: 1;
}
.hero-text-container {
    position: relative;
    z-index: 2;
    max-width: 90%; /* Keep max-width for responsiveness */
    margin: 0 auto;
}

/* Local Navigation Menu */
.local-nav {
    /*background-color: #e2e8f0; !* Light gray background *!*/
    /*padding: 1rem 0;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.local-nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease-in-out;
    color: #4A5568; /* Gray-700 */
    font-weight: 500; /* Medium */
    white-space: nowrap; /* Keep links on one line */
}
.local-nav-link:hover {
    background-color: #CBD5E0; /* Gray-300 */
}
.local-nav-link.active {
    background-color: #4C8302; /* Green */
    color: white;
}
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 15px;
    }
}
