:root {
            --primary-color: #1a365d;
            --secondary-color: #2d6a4f;
            --accent-color: #ff9800;
            --light-bg: #f8f9fa;
            --dark-text: #2d3748;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            transition: var(--transition);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .navbar-brand span {
            color: var(--accent-color);
        }
        .nav-link {
            font-weight: 600;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(26, 54, 93, 0.1);
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(45, 106, 79, 0.85)), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0 6rem;
            margin-top: 76px;
        }
        .hero-section h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #e68900;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }
        .card-body {
            padding: 1.5rem;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            background-color: rgba(26, 54, 93, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .icon-box i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        .feature-item:hover .icon-box {
            background-color: var(--primary-color);
        }
        .feature-item:hover .icon-box i {
            color: white;
        }
        .team-member {
            text-align: center;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1.5rem;
            border: 5px solid var(--light-bg);
        }
        .testimonial {
            background-color: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            position: relative;
        }
        .testimonial:before {
            content: '"';
            font-size: 5rem;
            color: rgba(26, 54, 93, 0.1);
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 1.5rem;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 4rem;
        }
        footer h5 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        footer h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }
        footer a {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
            display: inline-block;
        }
        footer a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
        .social-icons a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            margin-top: 3rem;
            text-align: center;
        }
        .flink {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            display: block;
            text-align: center;
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        .flink:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: var(--primary-color);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            .hero-section {
                padding: 6rem 0 4rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--dark-text);
        }
        .breadcrumb {
            background-color: transparent;
            padding: 0;
        }
        .breadcrumb-item.active {
            color: var(--accent-color);
        }
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.25);
        }
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
