:root {
            --orange: #FF8C00;
            --dark-orange: #E67E00;
            --black: #222222;
            --yellow: #FFD700;
            --light-yellow: #FFF9E6;
            --white: #FFFFFF;
            --gray: #F5F5F5;
            --dark-gray: #777777;
            --blue: #0056A3;
            --light-blue: #E6F2FF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--gray);
            color: var(--black);
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0; /* Reduced from 15px */
        }

        .logo-image {
            width: 200px; /* Reduced size */
            height: 100px; /* Reduced height */
            object-fit: contain;
            margin-right: 0; /* Remove margin */
            display: block; /* Remove inline spacing */
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px; /* Use gap instead of margins */
        }

        .logo h1 {
            font-size: 24px; /* Slightly smaller */
            font-weight: 700;
            color: var(--orange);
            margin: 0; /* Remove margin */
        }

        /* Remove the old logo-icon styles since we're using an image */
        .logo-icon {
            display: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--black);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--orange);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--orange);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--black);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--orange);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--dark-orange);
            transform: translateY(-3px);
        }
        
        /* Special Announcement */
        .special-announcement {
            background-color: var(--yellow);
            padding: 20px 0;
            text-align: center;
        }
        
        .special-announcement h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--black);
        }
        
        .special-announcement p {
            font-size: 18px;
            color: var(--black);
        }
        
        /* Categories Section */
        .categories {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--black);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--orange);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .category-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
        }
        
        .category-icon {
            height: 150px;
            background-color: var(--light-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: var(--orange);
        }
        
        .category-content {
            padding: 20px;
        }
        
        .category-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--black);
        }
        
        /* Fresh Products Section */
        .fresh-products {
            background-color: var(--white);
            padding: 80px 0;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--black);
        }
        
        .product-content p {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }
        
        /* Location Section */
        .location {
            padding: 80px 0;
            background-color: var(--light-yellow);
        }
        
        .location-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .location-info {
            flex: 1;
            min-width: 300px;
        }
        
        .location-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--black);
        }
        
        .location-info p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .map {
            flex: 1;
            min-width: 300px;
            height: 300px;
            background-color: var(--dark-gray);
            border-radius: 10px;
            overflow: hidden;
        }
        
        /* Ria Money Transfer Section */
        .ria-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
            color: var(--white);
        }
        .ria-section .section-title h2 {
            color: var(--white);
        }
        .ria-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .ria-info {
            flex: 1;
            min-width: 300px;
        }
        
        .ria-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .ria-info p {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .ria-btn {
            background-color: var(--blue);
            margin-top: 10px;
        }

        .ria-btn:hover {
            background-color: #004a8f;
            transform: translateY(-3px);
        }
        .ria-image {
            flex: 1;
            min-width: 300px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ria-logo {
            width: 100%;
            height: 100%;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--orange);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--yellow);
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--yellow);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--orange);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: var(--dark-gray);
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background-color: var(--white);
            border-radius: 10px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark-gray);
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--orange);
        }
        
        .modal-header {
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--gray);
        }
        
        .modal-header h3 {
            font-size: 24px;
            color: var(--black);
        }
        
        .modal-body {
            margin-bottom: 20px;
        }
        
        .modal-body h4 {
            font-size: 18px;
            margin: 15px 0 10px;
            color: var(--orange);
        }
        
        .modal-body ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .modal-body ul li {
            margin-bottom: 5px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px 0;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav {
                width: 100%;
            }
            
            nav ul {
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .hero h2 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .modal-content {
                padding: 20px;
            }
        }