/* --- Color Palette & Typography (Adjust these to match our_services.css) --- */
:root {
    /* Placeholder Colors - REPLACE THESE with your actual colors! */
    --primary-color: #4CAF50; /* A friendly, standard green for grocery/freshness */
    --secondary-color: #FF9800; /* A punchy orange/yellow for accents */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #2c3e50; /* Dark color for the footer/dark sections */

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-base: 16px;
}

/* --- Base & Reset Styles --- */
body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: #f7f7f7; /* Light background for the overall page */
    color: var(--text-dark);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* --- NAVBAR STYLES (Matching our_services) --- */
.navbar {
    background-color: grey; /* Assuming a white/light nav bar */
    color: var(--text-dark);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color); /* Logo color is usually the primary brand color */
    text-decoration: none;
    /* Add Flexbox styles for Image + Text Logo if you add the image back */
    display: flex;
    align-items: center;
    gap: 8px; /* Spacing between logo image and text */
}

.logo img {
    height: 40px; /* Example size for the logo image */
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 25px;
    font-size: 17px;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active { /* Use 'active' class for the current page link */
    color: var(--primary-color);
}


/* --- HERO SECTION STYLES (Matching our_services) --- */
.hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 600;
}


/* --- CONTENT SECTION STYLES --- */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

.card {
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    border-top: 5px solid var(--primary-color); /* Highlight with primary color */
}

.card h2 {
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 0;
    font-size: 2em;
}

.card h3 {
    color: var(--secondary-color);
    margin-top: 25px;
    font-size: 1.2em;
}

.faq-item {
    margin-bottom: 20px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
}

.faq-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
}


/* --- FOOTER STYLES (Needs to be added to the HTML, matching our_services) --- */
.footer {
    background-color: var(--bg-dark); /* Dark background for a standard footer */
    color: var(--text-light);
    padding: 40px 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 15px;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.footer-column p,
.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}