:root {
            --nike-black: #111;
            --nike-gray: #757575;
            --nike-light: #f5f5f5;
            --nike-accent: #e4002b;
        }
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: var(--nike-black);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .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') center/cover no-repeat;
            color: white;
            padding: 10rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--nike-accent);
        }
        .card {
            border: none;
            border-radius: 8px;
            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;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px;
            background-color: var(--nike-light);
            border-radius: 4px;
            color: var(--nike-black);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        .flink:hover {
            background-color: var(--nike-accent);
            color: white;
            transform: scale(1.05);
        }
        .contact-info li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--nike-accent);
        }
        footer {
            background-color: var(--nike-black);
            color: var(--nike-light);
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: white;
        }
        .btn-nike {
            background-color: var(--nike-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        .btn-nike:hover {
            background-color: #c10024;
            color: white;
            transform: scale(1.05);
        }
        .news-item {
            border-left: 3px solid var(--nike-accent);
            padding-left: 15px;
            margin-bottom: 2rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--nike-accent);
            display: block;
            line-height: 1;
        }
        .map-container iframe {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
