:root {
    --primary-color: #88B04B;
    --secondary-color: #E9F5F2;
    --accent-color: #4A5759;
    --text-color: #333333;
    --background-light: #FFFFFF;
    --font-family-main: 'Georgia', 'Times New Roman', serif;
}

body {
    background-color: var(--secondary-color);
    margin: 0;
    font-family: var(--font-family-main);
    color: var(--text-color);
}

*, 
*::before, 
*::after {
    box-sizing: inherit; /* or border-box – both fine */
}

/* Inherit box-sizing for all (common pattern) */
html {
    box-sizing: border-box;
}

/* Reset margins/paddings only where they matter */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
blockquote, pre, figure, hr {
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
}

/* Container system */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--spacing-md);
    background-color: var(--background-light);
    position: relative;
    z-index: 100;
    width: 100%;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Mobile Menu Button */
.menu-button {
    display: none;
    font-size: 1.4em;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
    z-index: 102; /* Above cart */
}

.menu-button:hover {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Cart Icon */
.cart-icon {
    font-size: 1.3em;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--primary-color);
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 10; /* Default: aligns to right */
    background-color: var(--background-light);
    min-width: 160px;
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    border-radius: var(--border-radius);
    overflow: hidden;
    /* Add border for subtle separation */
    border: 1px solid rgba(136, 176, 75, 0.1);
}

/* Show on hover (PC) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile: Full overlay menu */
@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    /* Hide cart icon temporarily or reduce it */
    .cart-icon {
        font-size: 1.1em;
        /* Optionally hide on small screens */
        /* display: none; */
    }

    /* Mobile Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 990;
    }

    /* Mobile dropdown takes full space */
    .dropdown-content {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 100vh;
        overflow-y: auto;
        right: auto;
        transform: translateX(100%); /* Hidden by default */
        transition: transform 0.4s ease;
        border-radius: 0;
        box-shadow: none;
        background-color: var(--background-light);
    }

    .dropdown-content.show {
        transform: translateX(0); /* Slide in */
        display: block;
    }

    .header {
        position: relative;
    }
}

button, .notify-btn {
    border: none;
    padding: 12px 24px; /* Slightly larger padding for better clickability */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: var(--font-family-main); /* Consistent font family */
    transition: background-color 0.2s, transform 0.2s; /* Added transform for hover effect */
}

button {
    background-color: var(--primary-color); /* Use primary color for buttons */
    color: white; /* White text for contrast */
}

button:hover {
    background-color: darken(var(--primary-color), 10%); /* Darken on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Specific button for "Notify Me" */
.notify-btn {
    background-color: var(--accent-color); /* Use accent color for specific buttons */
    color: white;
    font-weight: 600; /* Slightly lighter than bold for elegance */
    padding: 12px 30px; /* Consistent with previous padding */
    border-radius: 4px;
}

.notify-btn:hover {
    background-color: darken(var(--accent-color), 10%); /* Darken on hover */
    transform: translateY(-2px); /* Slight lift on hover */
}

.user-button, .cart-button {
    background-color: transparent;
    color: inherit;
    border: 1px solid var(--accent-color); /* Add border for clarity */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.user-button:hover, .cart-button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Base styles for headings and paragraphs */
h1, h2, h3, h4, p {
    font-family: var(--font-family-main); /* Consistent font family */
    color: var(--text-color); /* Consistent text color */
    line-height: 1.4; /* Improved readability */
}

/* Heading-specific styles */
h1 {
    font-family: var(--font-family-accent); /* Use accent font for h1 */
    font-size: 2.5em; /* Adjust size as needed */
    font-weight: 700;
    margin-bottom: 20px;
}

h2 {
    font-family: var(--font-family-accent); /* Use accent font for h2 */
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
}

h4 {
    font-size: 1.25em;
    font-weight: 500;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* Centered text utility class */
.centered {
    text-align: center;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: auto;
    text-align: left;
    color: white; /* Adjust color for hero context */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add shadow for readability */
}
/* Logo Container */
.logo-container {
    width: 100%;
    text-align: center; /* Center the logo by default */
    padding: 20px 0; /* Add vertical padding for spacing */
}

.logo {
    width: 80%;
    max-width: 300px;
    height: auto;
    display: inline-block;
}

.tagline {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    font-size: 1.2em;
    color: var(--text-color);
    font-family: var(--font-family-accent);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for readability */
}

/* Image Container */
.image-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
    gap: 20px; /* Add space between images */
    margin-top: 40px; /* Increase top margin for better spacing */
}

.image-container img {
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Add hover effect */
}

.image-container img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 40vh; /* Increase height for more impact */
    min-height: 250px; /* Ensure minimum height for smaller screens */
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the entire banner */
}

/* Banner Overlay Content */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white; /* Ensure text is readable against the image */
    width: 100%; /* Full width for better alignment */
    padding: 0 20px; /* Add horizontal padding for text */
}

.overlay-content h1,
.overlay-content h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Stronger shadow for readability */
}

/* Hero Section */
.hero-section {
    background-image: url("background-img1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white; /* Ensure text is readable against the image */
    text-align: center;
}

.hero-section h1 {
    font-family: var(--font-family-accent);
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0.5, 0, 0.5);
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25em;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-section {
    background-color: var(--secondary-color);
    padding-bottom: 80px; /* Space for fixed footer */
}

/* Products Grid Section */
.products-section {
    background-color: var(--secondary-color);
    padding: 60px 20px; /* Consistent padding with other sections */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Increased gap for better spacing */
}

.product-item {
    text-align: center;
    background-color: white; /* Add background for consistency */
    border-radius: 8px;
    overflow: hidden; /* Ensure rounded corners apply to images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease; /* Hover effect */
}

.product-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0; /* Rounded corners only at the top */
    margin-bottom: 15px;
}

.product-item a {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    padding: 15px;
}

.product-status.available {
    background-color: var(--primary-color); /* Use primary color for consistency */
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875em;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Our Story Section */
.story-section {
    background-color: #FFFDD0; /* Keep or replace with a CSS variable */
    padding: 60px 20px;
    text-align: center;
}

/* Values Section */
.values-section {
    background-color: var(--secondary-color); /* Use CSS variable for consistency */
    padding: 60px 20px;
    text-align: center;
}

.product-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white; /* Ensure text is readable against the image */
    text-align: center;
}

.product-banner h2 {
    font-family: var(--font-family-accent);
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.product-banner.oat h2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    margin: 0;
}

.disabled-option {
    color: #999;
    cursor: not-allowed;
}

.coming-soon-badge {
    background-color: var(--secondary-color); 
    color: var(--text-color);
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px dashed var(--accent-color);
}

.coming-soon-message {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

/* Coming Soon tag on product grid items */
.product-item.coming-soon {
    opacity: 0.85;
    position: relative; /* Ensure positioning for ::after */
}

.product-item.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color); /* Use CSS variable */
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid var(--accent-color); /* Use accent color */
}

.products-hero {
    background-color: var(--secondary-color); /* Use CSS variable */
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
}

.products-hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.products-content {
    background-color: #FFFDD0; /* Keep or replace with a CSS variable */
    padding: 60px 20px; /* Consistent padding */
    text-align: center;
}

.products-content p {
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Hero Section */
.policy-hero {
    background-color: var(--secondary-color); /* Use CSS variable for consistency */
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
}

.policy-hero h2 {
    font-size: 2em; /* Match other hero sections */
    margin-bottom: 10px;
}

/* Content Section */
.policy-content {
    background-color: #FFFDD0; /* Keep or replace with a CSS variable */
    padding: 60px 20px; /* Consistent padding */
    display: flex;
    justify-content: center;
}

.policy-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
}

/* Headings */
.policy-container h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
    text-align: center;
}

.policy-container h4 {
    font-size: 1.25em; /* Slightly larger for better hierarchy */
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--accent-color); /* Use accent color for consistency */
    text-align: left;
}

/* Paragraphs and Links */
.policy-container p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
}

.policy-container a {
    color: var(--accent-color); /* Use accent color for consistency */
    text-decoration: underline;
    font-weight: bold;
}

.policy-container a:hover {
    color: darken(var(--accent-color), 10%); /* Darken on hover */
}

@media print {
    .policy-hero, .policy-content {
        background-color: #fff !important;
        padding: 0;
    }
    .policy-container {
        box-shadow: none;
        padding: 0;
    }
}
.policy-container .disclaimer {
    background-color: #FFEBE6;
    padding: 15px;
    border-left: 4px solid #FF4444;
    margin: 20px 0;
}

/* ========================
   CART PAGE STYLES
   ======================== */

/* Hero Section */
.cart-hero {
    background-color: var(--secondary-color); /* Use CSS variable for consistency */
    padding: 60px 20px; /* Consistent padding with other sections */
    text-align: center;
}

.cart-hero h2 {
    font-size: 2em; /* Match other hero sections */
    margin-bottom: 10px;
}

/* Content Section */
.cart-content {
    background-color: #FFFDD0; /* Keep or replace with a CSS variable */
    padding: 60px 20px; /* Consistent padding */
    display: flex;
    justify-content: center;
}

.cart-content .cart-style {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-content .cart-style h2 {
    font-size: 1.5em; /* Consistent with other headings */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color); /* Use primary color for consistency */
    text-align: center;
}

/* Cart Items List */
#cartItemsList {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

#cartItemsList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

#cartItemsList li button {
    background-color: #cc3333;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

#cartItemsList li button:hover {
    background-color: #aa1111;
}

/* Cart Subtotal */
#cartSubtotal {
    font-weight: bold;
    font-size: 1.2em;
    text-align: right;
    padding: 15px 0;
    border-top: 2px solid var(--primary-color); /* Use primary color for consistency */
    margin-bottom: 20px;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.continue-shopping-btn {
    text-decoration: none;
    color: var(--text-color); /* Use text color for consistency */
    font-weight: bold;
    padding: 12px 20px;
    border: 1px solid var(--accent-color); /* Use accent color for consistency */
    border-radius: 4px;
    background-color: transparent; /* Remove background for consistency */
    transition: background-color 0.2s, color 0.2s;
}

.continue-shopping-btn:hover {
    background-color: var(--accent-color); /* Use accent color for consistency */
    color: white;
}

.checkout-button {
    background-color: var(--primary-color); /* Use primary color for consistency */
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.checkout-button:hover {
    background-color: darken(var(--primary-color), 10%); /* Darken on hover */
}

/* Empty Cart Message */
#cartItemsList:empty::after {
    content: "Your cart is empty.";
    display: block;
    text-align: center;
    color: #666;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
    }
}

.checkout-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* ========================
   FOOTER
   ======================== */
footer {
    background-color: var(--background-light);
    text-align: center;
    padding: var(--spacing-md) 0; /* Uses design token */
    width: 100%;
    /* Removed: position: fixed */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
    /* Optional: if inside a relative container */
    margin-top: auto; /* Pushes footer to bottom in flex layouts */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

footer li {
    /* No longer inline-block — let flex handle layout */
}

footer a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Social Icons */
footer .social-icons a {
    font-size: 1.6em;
    color: var(--text-light);
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--primary-color); /* Sage green on hover — warm & natural */
}

/* Newsletter */
footer .newsletter {
    margin: var(--spacing-md) 0;
}

footer .newsletter input {
    padding: 10px 12px;
    width: 250px;
    max-width: 100%;
    border: 1px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family-main);
}

footer .newsletter input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(136, 176, 75, 0.2);
}

footer .copyright {
    font-size: 0.875em;
    color: var(--text-light);
    margin-top: var(--spacing-md);
    opacity: 0.9;
}


/* ==========================================================================
   RESPONSIVE DESIGN (Consolidated Media Queries)
   ========================================================================== */

/* TABLETS & SMALL SCREENS (up to 768px wide) */
@media (max-width: 768px) {

    /* Shared Hero / Banner Sections */
    .hero-section,
    .product-banner,
    .cart-hero,
    .products-hero,
    .about-hero,
    .policy-hero {
        height: 40vh; /* Consistent height for all hero sections */
        min-height: unset; /* Override any min-height set */
        padding: 20px; /* Consistent padding */
    }

    .hero-section h2,
    .product-banner h2,
    .cart-hero h2,
    .products-hero h2,
    .about-hero h2,
    .policy-hero h2 {
        font-size: 1.4em; /* Consistent font size for headings */
    }

    /* Logo */
    .logo {
        max-width: 200px; /* Smaller logo for small screens */
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller grid items */
        gap: 10px; /* Reduced gap */
    }

    /* Shared Image Containers */
    .image-container {
        flex-direction: column; /* Stack images vertically */
        align-items: center;
        gap: 15px; /* Consistent spacing */
    }

    .image-container img {
        max-width: 80%; /* Smaller images */
    }

    /* Fixed Cart Button */
    .cart {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.9em; /* Smaller text */
    }

    /* Coming Soon Elements */
    .coming-soon-badge {
        font-size: 1.1em; /* Slightly smaller */
        padding: 10px 20px; /* Consistent padding */
    }

    .notify-btn {
        display: block;
        text-align: center;
        margin: 10px auto;
        padding: 10px 20px;
        font-size: 14px; /* Smaller text */
    }

    .coming-soon-message {
        font-size: 14px; /* Smaller text */
        padding: 0 10px; /* Consistent padding */
    }

    /* Shared Content Sections */
    .story-section,
    .values-section,
    .contact-section,
    .products-content,
    .policy-content,
    .cart-content {
        padding: 20px 15px; /* Consistent padding */
    }

    /* Cart Actions */
    .cart-actions {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Consistent spacing */
    }

    .continue-shopping-btn,
    .checkout-button {
        width: 100%; /* Full width for better tap targets */
        text-align: center;
    }

    /* Cart Items List */
    #cartItemsList li {
        flex-direction: column; /* Stack cart items vertically */
        align-items: flex-start;
        gap: 10px; /* Consistent spacing */
    }

    /* Specific Overrides */
    .oat-section h2 {
        bottom: 10px; /* Adjust position for smaller screens */
        left: 10px;
        font-size: 1.2em; /* Smaller text */
    }
}

/* MOBILE SCREENS (up to 480px wide) */
@media (max-width: 480px) {
    /* Further reduce font sizes and spacing if needed */
    .hero-section h2,
    .product-banner h2,
    .cart-hero h2,
    .products-hero h2,
    .about-hero h2,
    .policy-hero h2 {
        font-size: 1.2em; /* Even smaller font size */
    }

    .product-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }

    .image-container img {
        max-width: 100%; /* Full width images */
    }
}


/* EXTRA SMALL DEVICES (up to 480px wide) */
@media (max-width: 480px) {

    /* All Banner / Hero Sections */
    .hero-section,
    .product-banner,
    .cart-hero,
    .products-hero,
    .about-hero,
    .policy-hero {
        height: 30vh; /* Shorter height for small screens */
        min-height: unset; /* Override any min-height set */
        padding: 15px; /* Reduced padding for smaller screens */
    }

    .hero-section h2,
    .product-banner h2,
    .cart-hero h2,
    .products-hero h2,
    .about-hero h2,
    .policy-hero h2 {
        font-size: 1.2em; /* Smaller font size for headings */
    }

    /* Logo */
    .logo {
        max-width: 150px; /* Even smaller logo */
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 10px; /* Consistent gap */
        padding: 0 10px; /* Reduced padding */
    }

    /* Coming Soon Elements */
    .coming-soon-badge {
        font-size: 1em; /* Smaller font size */
        padding: 8px 15px; /* Reduced padding */
    }

    /* Fixed Cart Button */
    .cart {
        padding: 3px 8px; /* Smaller padding */
        font-size: 0.8em; /* Smaller text */
    }

    /* Shared Image Containers */
    .image-container {
        flex-direction: column; /* Stack images vertically */
        gap: 10px; /* Reduced gap */
    }

    .image-container img {
        max-width: 100%; /* Full width images */
    }

    /* About Page Specifics */
    .about-values .image-container img {
        max-width: 40%; /* Smaller images for values section */
    }

    /* Policy Container */
    .policy-container {
        padding: 20px 10px; /* Reduced padding */
    }

    .policy-container h3 {
        font-size: 1.2em; /* Smaller font size for headings */
    }

    /* Footer List Items */
    footer li {
        display: block; /* Stack links vertically */
        margin: 5px 0; /* Reduced margin */
    }
}
