        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* About Page Hero Section */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1709122933959-17d7f461a5c4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat bottom center/cover;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
        }
        
        .about-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .about-hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        .about-hero .location {
            font-size: 1.2rem;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .about-hero .location i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        /* About Intro Section */
        .about-intro {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .about-intro-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-intro-content h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .about-intro-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .mission-statement {
            background: var(--primary-color);
            color: white;
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
            position: relative;
        }
        
        .mission-statement:before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: serif;
        }
        
        .mission-statement p {
            font-size: 1.3rem;
            font-style: italic;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        /* Who We Are Section */
        .who-we-are {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-header h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .section-header h2 i {
            margin-right: 15px;
            color: var(--accent-color);
        }
        
        .section-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-header:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .manufacturing-process {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-top: 4px solid var(--primary-color);
        }
        
        .process-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .process-step h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* What We Make Section */
        .what-we-make {
            padding: 100px 0;
            background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1758&q=80') no-repeat center center/cover;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-category-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }
        
        .product-category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-category-card h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .product-category-card h4 i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .product-category-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .product-category-card ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
        }
        
        .product-category-card ul li i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 5px;
            flex-shrink: 0;
        }
        
        /* Vision & Values Section */
        .vision-values {
            padding: 100px 0;
        }
        
        .vision-card {
            background: var(--primary-color);
            color: white;
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .vision-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .vision-card h3 {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .vision-card p {
            font-size: 1.2rem;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            border-top: 4px solid var(--primary-color);
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .value-card h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Why Trust Section */
        .why-trust {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .trust-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .trust-point {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .trust-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .trust-point h4 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Delivery Locations */
        .delivery-locations {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .delivery-locations h2 {
            margin-bottom: 40px;
            color: white;
        }
        
        .locations-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .location-badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .location-badge:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        /* Final Message Section */
        .final-message {
            padding: 100px 0;
            text-align: center;
        }
        
        .message-card {
            background: var(--light-color);
            border-radius: 10px;
            padding: 50px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .message-card:before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 30px;
            font-size: 8rem;
            color: var(--accent-color);
            font-family: serif;
            opacity: 0.3;
        }
        
        .message-card h3 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .message-card p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 0;
        }
        
        /* CTA Section */
        .about-cta {
            padding: 100px 0;
            background: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .about-cta h2 {
            margin-bottom: 30px;
            color: white;
        }
        
        .about-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-color);
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .btn-light:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .about-hero {
                padding: 120px 0 80px;
            }
            
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero .tagline {
                font-size: 1.2rem;
            }
            
            .locations-grid {
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }
            
            .manufacturing-process {
                flex-direction: column;
            }
        }
   