:root {
            --primary-color: #1a365d;
            --secondary-color: #d4af37;
            --accent-color: #2d3748;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary-color);
            font-weight: 700;
        }
        .navbar {
            background-color: rgba(26, 54, 93, 0.95);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--secondary-color) !important;
        }
        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://picsum.photos/1920/1080?random=1');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            animation: fadeInDown 1s;
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: bold;
            transition: all 0.3s;
        }
        .btn-primary:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .card-img-top {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            background-color: #f1f1f1;
            border-radius: 5px;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 60px 0 20px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--secondary-color);
        }
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #444;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin: 0 5px;
            transition: background-color 0.3s;
        }
        .social-icons a:hover {
            background-color: var(--secondary-color);
        }
        .product-img {
            overflow: hidden;
            border-radius: 10px;
        }
        .product-img img {
            transition: transform 0.5s;
            width: 100%;
        }
        .product-img:hover img {
            transform: scale(1.1);
        }
        .news-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .hero-section { padding: 100px 0; }
        }
