        /* WCAG compliant color scheme - verified contrast ratios */
        :root {
            --primary-color: #2D5016;
            --primary-dark: #1F3810;
            --primary-light: #4A7C2A;
            --secondary-color: #9C5220;
            --secondary-dark: #7A3F19;
            --accent-color: #D4AF37;
            --accent-light: #F4E4A6;
            --text-primary: #1A1A1A;        /* 4.5:1+ contrast on white */
            --text-secondary: #333333;      /* Enhanced from #4A4A4A for better contrast */
            --text-light: #FFFFFF;
            --text-muted: #666666;           /* Enhanced from #6B6B6B for better contrast */
            --background-primary: #FFFFFF;
            --background-light: #F9F9F9;
            --background-accent: #FDF8E7;
            --border-color: #D1D5DB;
            --border-light: #E5E7EB;
            --shadow: 0 2px 10px rgba(0,0,0,0.08);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
            --transition: all 0.3s ease;
            
            /* Foundation-style breakpoints */
            --small-breakpoint: 640px;
            --medium-breakpoint: 1024px;
            --large-breakpoint: 1200px;
            --xlarge-breakpoint: 1440px;
        }

        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--background-primary);
        }

        /* Skip to content link for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--text-primary);
            color: var(--text-light);
            padding: 12px 16px;
            text-decoration: none;
            border-radius: 4px;
            z-index: 1000;
            transition: var(--transition);
            font-weight: 600;
            border: 2px solid var(--text-primary);
            opacity: 0;
            transform: translateY(-10px);
        }

        .skip-link:focus {
            top: 6px;
            outline: 3px solid var(--accent-color);
            outline-offset: 2px;
            opacity: 1;
            transform: translateY(0);
        }

        /* Container system */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header and Navigation */
        .header {
            background: #EDE5D2;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid var(--border-light);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 200px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-image {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .logo:hover .logo-image,
        .logo:focus .logo-image {
            transform: scale(1.05);
        }

        .logo:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
            border-radius: 4px;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
            padding: 12px;
            min-width: 48px;
            min-height: 48px;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            position: relative;
        }

        .nav-toggle i {
            pointer-events: none;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-toggle:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 2px;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .main-nav {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 1.2rem;
            padding: 12px 16px;
            transition: var(--transition);
            display: block;
            border-radius: 6px;
            border: 2px solid transparent;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--secondary-color);
            outline: none;
            background-color: transparent;
            border: 2px solid #9C5220;
            border-radius: 6px;
        }

        .nav-link:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 2px;
        }

        /* Current page indicator - improved contrast for WCAG compliance */
        .nav-link.current {
            color: #7A3F19; /* Darker brown for better contrast */
            background-color: rgba(122, 63, 25, 0.1);
            border: 2px solid #7A3F19;
        }

        /* Page Header - Dark green background matching homepage hero */
        .page-header {
            background: #1F3810; /* Same solid dark green as homepage hero */
            color: #FFFFFF; /* White text for WCAG compliance - 12.63:1 contrast ratio */
            padding: 4rem 0;
            text-align: center; /* Center the text */
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #FFFFFF; /* Explicit white for maximum contrast */
            margin-bottom: 0; /* Remove bottom margin since breadcrumbs moved */
        }

        /* Breadcrumb section - separate container below header */
        .breadcrumb-section {
            background: #F9F9F9; /* Light gray background */
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .breadcrumb {
            list-style: none;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            font-size: 0.9rem;
            color: var(--text-secondary); /* #333333 on #F9F9F9 = 12.6:1 contrast - WCAG AAA compliant */
        }

        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb a:hover,
        .breadcrumb a:focus {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        /* Two Column Layout */
        .two-column-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            padding: 4rem 0;
        }

        /* Main Content Column */
        .main-content {
            max-width: none;
        }

        .content-section {
            margin-bottom: 3rem;
        }

        .content-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .content-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 2rem 0 1rem 0;
        }

        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .content-section ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .content-section li {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        /* Content image - Square ratio (1:1) - 100% width of content column */
        .content-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            margin: 2rem 0;
        }

        /* Right Sidebar */
        .sidebar {
            background: var(--background-light);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 240px; /* Account for header height */
            border: 1px solid var(--border-light);
        }

        .sidebar-section {
            margin-bottom: 2.5rem;
        }

        .sidebar-section:last-child {
            margin-bottom: 0;
        }

        .sidebar h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            margin-bottom: 0.75rem;
        }

        .sidebar a {
            color: var(--text-secondary);
            text-decoration: underline;
            font-size: 1rem;
            transition: var(--transition);
            text-underline-offset: 2px;
        }

        .sidebar a:hover,
        .sidebar a:focus {
            color: var(--secondary-color);
            text-decoration-thickness: 2px;
        }

        /* Sidebar image - Square ratio (1:1) - fits sidebar width */
        .sidebar-image {
            width: 100%;
            height: 200px;
            border-radius: 8px;
            object-fit: cover;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            margin: 1rem 0;
        }

        .sidebar p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        /* Call-to-action in sidebar - WCAG compliant white text, no underline */
        .sidebar-cta {
            background: var(--secondary-color); /* #9C5220 - brown background */
            color: #FFFFFF !important; /* Force white text for WCAG compliance */
            text-decoration: none !important; /* Remove underline from button */
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            display: inline-block;
            text-align: center;
            width: 100%;
            margin-top: 1rem;
            border: 2px solid var(--secondary-color);
        }

        .sidebar-cta:hover,
        .sidebar-cta:focus {
            background: var(--secondary-dark); /* #7A3F19 - darker brown on hover */
            color: #FFFFFF !important; /* Force white text on hover/focus */
            text-decoration: none !important; /* Remove underline on hover/focus */
            border-color: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(156, 82, 32, 0.3);
            outline: none;
        }

        .sidebar-cta:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: var(--text-light);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: var(--text-light);
            text-decoration: underline;
            transition: var(--transition);
            text-underline-offset: 2px;
        }

        .footer-section a:hover,
        .footer-section a:focus {
            color: var(--accent-color);
            outline: none;
            text-decoration: underline;
            text-decoration-thickness: 2px;
        }

        .footer-section a:focus {
            outline: 2px solid var(--accent-color);
            outline-offset: 2px;
            border-radius: 2px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333333;
            font-size: 0.9rem;
            color: #D1D1D1;
        }

        .footer-bottom a {
            color: #FFD700;
            text-decoration: underline;
            transition: var(--transition);
            text-underline-offset: 2px;
            font-weight: 500;
        }

        .footer-bottom a:hover,
        .footer-bottom a:focus {
            color: #FFFFFF;
            text-decoration: underline;
            text-decoration-thickness: 2px;
            outline: none;
        }

        /* Single Column Section */
        .single-column-section {
            padding: 4rem 0;
            background: var(--background-primary); /* Same white background as two-column sections */
            border-top: 1px solid var(--border-light);
        }

        /* Single column content styling */
        .single-column-section .content-section {
            max-width: 900px;
            margin: 0 auto 3rem auto;
        }

        .single-column-section .content-section:last-child {
            margin-bottom: 0;
        }

        /* Community grid for single column */
        .community-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .community-item {
            background: var(--background-light);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }

        .community-item h3 {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .community-item p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Single column image - Full width aspect ratio */
        .single-column-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            object-fit: cover;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            margin: 2rem 0;
        }

        /* Vendor Section Styles */
        .vendors-section {
            padding: 4rem 0;
            background: var(--background-primary);
            border-top: 1px solid var(--border-light);
        }

        .vendors-intro {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }

        .vendor-filter {
            text-align: center;
            margin-bottom: 3rem;
        }

        .vendor-filter label {
            display: inline-block;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-right: 1rem;
        }

        .state-select {
            padding: 8px 16px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            color: var(--text-primary);
            background: var(--background-primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .state-select:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(156, 82, 32, 0.1);
        }

        .vendors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 350px)); /* Fixed width cards */
            gap: 2rem;
            margin-bottom: 3rem;
            justify-content: center; /* Center the grid items */
        }

        .vendor-card {
            background: var(--background-light);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .vendor-header {
            margin-bottom: 1.5rem;
        }

        .vendor-header h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .vendor-type {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--text-light);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .vendor-card p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .vendor-details {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .vendor-details span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .vendor-details i {
            color: var(--secondary-color);
            font-size: 0.8rem;
            width: 16px;
        }

        .vendor-partnership {
            background: var(--background-light);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            max-width: 800px;
            margin: 0 auto;
        }

        .vendor-partnership h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .vendor-partnership > p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 2rem;
        }

        .partnership-requirements {
            text-align: left;
        }

        .partnership-requirements h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .partnership-requirements ul {
            list-style: none;
            padding: 0;
        }

        .partnership-requirements li {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .partnership-requirements li::before {
            content: "•";
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        *:focus-visible {
            outline: 3px solid var(--accent-color);
            outline-offset: 2px;
            box-shadow: 0 0 0 1px var(--background-primary);
        }

        /* Responsive Design */
        
        /* Small screens (up to 640px) */
        @media screen and (max-width: 639px) {
            .logo-image {
                width: 120px;
                height: 120px;
            }
            
            .nav-container {
                padding: 1rem 20px;
                min-height: 140px;
            }
            
            .nav-toggle {
                display: flex;
                position: relative;
                z-index: 1001;
                color: var(--primary-color);
            }

            .nav-toggle.menu-open {
                color: var(--text-light);
                background-color: rgba(0, 0, 0, 0.5);
            }

            .main-nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(26, 26, 26, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                z-index: 1000;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .main-nav.show {
                display: flex;
                opacity: 1;
                visibility: visible;
            }

            .nav-link {
                color: var(--text-light);
                font-size: 2rem;
                font-weight: 600;
                padding: 1rem 2rem;
                text-align: center;
                border: 2px solid transparent;
                transition: var(--transition);
                border-radius: 8px;
                min-width: 200px;
            }

            .nav-link:hover,
            .nav-link:focus {
                color: var(--text-light);
                background-color: var(--secondary-color);
                border: 2px solid var(--secondary-color);
                transform: scale(1.05);
            }

            /* Mobile: Page header adjustments */
            .page-title {
                font-size: 2rem;
            }

            /* Mobile: Single column layout */
            .two-column-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 0;
            }

            .sidebar {
                position: static;
                order: 1;
                margin-bottom: 2rem;
            }

            .main-content {
                order: 2;
            }

            .page-title {
                font-size: 2rem;
            }

            .content-section h2 {
                font-size: 1.5rem;
            }

            /* Mobile: Single column adjustments */
            .single-column-section {
                padding: 2rem 0;
            }

            .community-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .community-item {
                padding: 1.5rem;
            }

            .single-column-image {
                height: 250px;
            }

            /* Vendor section mobile styles */
            .vendors-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .vendor-card {
                padding: 2rem;
            }

            .vendor-partnership {
                padding: 2rem;
            }

            /* Contact section mobile styles */
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .contact-card {
                padding: 2rem;
            }

            .contact-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .contact-item i {
                align-self: flex-start;
            }

            .contact-cta {
                padding: 1.5rem;
            }

            /* Products section mobile styles */
            .products-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .products-cta {
                padding: 2rem;
            }

            .products-cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .container {
                padding: 0 15px;
            }
        }

        /* Medium screens (640px to 1023px) */
        @media screen and (min-width: 640px) and (max-width: 1023px) {
            /* Tablet: Single column layout */
            .two-column-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .sidebar {
                position: static;
                order: 1;
                margin-bottom: 2rem;
            }

            .main-content {
                order: 2;
            }

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

            .single-column-image {
                height: 300px;
            }
        }

        /* Large screens (1024px+) - Two column layout maintained */
        @media screen and (min-width: 1024px) {
            .sidebar {
                top: 240px; /* Proper sticky positioning */
            }
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .sidebar {
                position: static; /* Disable sticky for reduced motion users */
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --primary-color: #1F3810;
                --text-primary: #000000;
                --text-secondary: #000000;
                --border-color: #000000;
                --accent-color: #B8860B;
            }
            
            .page-header {
                background: #1F3810;
            }
            
            .page-title {
                color: #FFFFFF;
            }
            
            .sidebar,
            .content-image,
            .sidebar-image {
                border: 2px solid var(--text-primary);
            }
            
            .sidebar-cta {
                border: 3px solid var(--text-primary);
                background: var(--accent-color);
                color: var(--text-primary);
            }
        }

        /* Vendor title centering - placed at end for CSS cascade precedence */
        .vendors-title {
            text-align: center !important;
        }

        /* Force disable all hover effects on product cards - placed at end for precedence */
        .product-card:hover,
        .products-section .product-card:hover {
            transform: none !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
            transition: none !important;
        }

        .product-img:hover,
        .products-section .product-img:hover,
        .product-card:hover .product-img,
        .products-section .product-card:hover .product-img {
            transform: none !important;
            transition: none !important;
        }

        /* Contact Section Styles */
        .contact-section {
            padding: 4rem 0;
            background: var(--background-primary);
            border-top: 1px solid var(--border-light);
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
        }

        .contact-intro {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Contact Form Styles */
        .contact-form-column h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }

        .contact-form {
            background: var(--background-light);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.mbot40 {
            margin-bottom: 2.5rem;
        }

        .form-group label {
            display: block;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 1rem;
            color: var(--text-primary);
            background: var(--background-primary);
            transition: var(--transition);
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(156, 82, 32, 0.1);
        }

        .form-control::placeholder {
            color: var(--text-muted);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            display: inline-block;
            background: var(--secondary-color);
            color: #FFFFFF !important;
            text-decoration: none !important;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            width: 100%;
            text-align: center;
        }

        .submit-btn:hover,
        .submit-btn:focus {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(156, 82, 32, 0.3);
            outline: none;
        }

        .submit-btn:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }

        /* Contact Info Column */
        .contact-info-column h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }

        .contact-card {
            background: var(--background-light);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-light);
        }

        .contact-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: var(--secondary-color);
            width: 24px;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .contact-details h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .contact-details p:last-child {
            margin-bottom: 0;
        }

        .contact-details a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .contact-details a:hover,
        .contact-details a:focus {
            color: var(--secondary-dark);
            text-decoration: underline;
        }

        .contact-note {
            font-size: 0.9rem !important;
            color: var(--text-muted) !important;
            font-style: italic;
        }

        /* Contact CTA Section */
        .contact-cta {
            background: var(--background-accent);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--secondary-color);
            text-align: center;
        }

        .contact-cta h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .contact-cta p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .contact-cta-btn {
            display: inline-block;
            background: var(--secondary-color);
            color: #FFFFFF !important;
            text-decoration: none !important;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }

        .contact-cta-btn:hover,
        .contact-cta-btn:focus {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(156, 82, 32, 0.3);
        }

        .contact-cta-btn i {
            margin-right: 0.5rem;
        }

        /* Products Section Styles */
        .products-section {
            padding: 4rem 0;
            background: var(--background-light);
            border-top: 1px solid var(--border-light);
        }

        .products-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 2rem;
            text-align: center;
        }

        .products-intro {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .product-card {
            background: var(--background-primary);
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        /* Product image - 4:3 aspect ratio for all screen sizes */
        .product-image {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 75%; /* 4:3 aspect ratio (3/4 = 0.75 = 75%) */
            overflow: hidden;
        }

        .product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        .product-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .product-category {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .product-content > p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
            padding: 0;
            margin-top: auto;
        }

        .product-features li {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            padding-left: 1.2rem;
            position: relative;
            line-height: 1.5;
        }

        .product-features li::before {
            content: "✓";
            color: var(--secondary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Product Learn More Button */
        .product-learn-more {
            display: inline-block;
            background: transparent;
            color: var(--secondary-color);
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            margin-top: 1.5rem;
            text-align: center;
        }

        .product-learn-more:hover,
        .product-learn-more:focus {
            background: var(--secondary-color);
            color: #FFFFFF;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(156, 82, 32, 0.2);
            outline: none;
        }

        .product-learn-more:focus {
            outline: 3px solid var(--accent-color);
            outline-offset: 3px;
        }

        /* Products CTA Section */
        .products-cta {
            background: var(--background-primary);
            padding: 3rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-light);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .products-cta h3 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .products-cta > p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .products-cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .products-btn-primary {
            display: inline-block;
            background: var(--secondary-color);
            color: #FFFFFF !important;
            text-decoration: none !important;
            padding: 14px 28px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }

        .products-btn-primary:hover,
        .products-btn-primary:focus {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(156, 82, 32, 0.3);
        }

        .products-btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--secondary-color) !important;
            text-decoration: none !important;
            padding: 14px 28px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
        }

        .products-btn-secondary:hover,
        .products-btn-secondary:focus {
            background: var(--secondary-color);
            color: #FFFFFF !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(156, 82, 32, 0.3);
        }

        .products-btn-primary i,
        .products-btn-secondary i {
            margin-right: 0.5rem;
        }