:root {
            --primary-red: #E41E26;
            --primary-dark: #111111;
            --primary-gray: #333333;
            --secondary-gray: #666666;
            --light-gray: #F5F5F5;
            --accent-blue: #007BFF;
        }
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--primary-gray);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-red) !important;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-red);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .btn-primary {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #c0171d;
            border-color: #c0171d;
            transform: scale(1.05);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-red);
        }
        .testimonial-card {
            background-color: var(--light-gray);
            border-left: 5px solid var(--primary-red);
        }
        .footer {
            background-color: var(--primary-dark);
            color: white;
            padding-top: 4rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--secondary-gray);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: background-color 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-red);
        }
        .friendlink-container {
            background-color: #222;
            padding: 2rem;
            border-radius: 10px;
        }
        .flink {
            display: inline-block;
            background-color: #333;
            color: #ddd;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 500;
        }
        .flink:hover {
            background-color: var(--primary-red);
            color: white;
            transform: translateY(-3px);
        }
        .product-img {
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
