:root {
            --skechers-blue: #0056a3;
            --skechers-yellow: #ffd100;
            --skechers-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 86, 163, 0.85), rgba(0, 86, 163, 0.9)), url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 120px 0 80px;
            position: relative;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            color: var(--skechers-blue);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--skechers-yellow);
        }
        .text-center .section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            background-color: white !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--skechers-blue) !important;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--dark-gray) !important;
            margin: 0 8px;
            position: relative;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--skechers-yellow);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        .btn-skechers {
            background-color: var(--skechers-blue);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--skechers-blue);
        }
        .btn-skechers:hover {
            background-color: transparent;
            color: var(--skechers-blue);
            border-color: var(--skechers-blue);
        }
        .btn-yellow {
            background-color: var(--skechers-yellow);
            color: var(--dark-gray);
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--skechers-yellow);
        }
        .btn-yellow:hover {
            background-color: transparent;
            color: var(--dark-gray);
            border-color: var(--skechers-yellow);
        }
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding-top: 60px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: var(--skechers-yellow);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--skechers-blue);
            transform: translateY(-5px);
        }
        .flink {
            background: #2a2a2a;
            color: #ddd;
            padding: 8px 15px;
            border-radius: 6px;
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        .flink:hover {
            background: #333;
            color: var(--skechers-yellow);
            border-left-color: var(--skechers-yellow);
            transform: translateX(5px);
        }
        .sticky-top {
            backdrop-filter: blur(10px);
        }
        .product-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .news-card {
            border-left: 4px solid var(--skechers-yellow);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--skechers-blue);
            line-height: 1;
        }
        .contact-info i {
            width: 50px;
            height: 50px;
            background: var(--skechers-blue);
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 0 50px;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .stat-number {
                font-size: 2.2rem;
            }
        }
