:root {
            --primary-blue: #0a3d62;
            --secondary-blue: #1e5799;
            --accent-teal: #1abc9c;
            --accent-orange: #e67e22;
            --light-gray: #f8f9fa;
            --dark-gray: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.8;
            color: #333;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary-blue);
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            padding: 1.2rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-gray);
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--accent-teal);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -100px;
            right: -100px;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-teal), #16a085);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: white;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(10, 61, 98, 0.2);
        }
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--accent-teal);
        }
        .friendlink {
            background-color: var(--light-gray);
            padding: 3rem 0;
        }
        .flink {
            display: inline-block;
            background: white;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 8px;
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .flink:hover {
            border-color: var(--accent-teal);
            transform: translateY(-3px);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
        }
        .product-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-img {
            transform: scale(1.05);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-padding {
                padding: 3rem 0;
            }
        }
