:root {
            --primary-red: #cb202d;
            --primary-dark: #1c1c1c;
            --primary-gold: #d4af37;
            --primary-light: #f8f9fa;
            --accent-green: #28a745;
            --text-dark: #333;
            --text-light: #6c757d;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-red) !important;
        }
        .nav-link {
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-red) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 8rem 0;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 3rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 2px;
        }
        .card {
            border: none;
            border-radius: 12px;
            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;
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-red);
            font-size: 1.8rem;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-red);
            line-height: 1;
        }
        .btn-primary {
            background-color: var(--primary-red);
            border-color: var(--primary-red);
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #a81a24;
            border-color: #a81a24;
            transform: translateY(-2px);
        }
        .footer {
            background: var(--primary-dark);
            color: var(--primary-light);
            padding: 4rem 0 2rem;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .flink {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 6px;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }
        .contact-info li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary-red);
        }
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            height: 300px;
        }
        .testimonial-card {
            border-left: 4px solid var(--primary-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
        }
        .accordion-button:not(.collapsed) {
            background-color: rgba(203, 32, 45, 0.1);
            color: var(--primary-red);
            font-weight: 600;
        }
        .partners-logo img {
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
            max-height: 60px;
        }
        .partners-logo img:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                min-height: 70vh;
                text-align: center;
            }
            .stats-number {
                font-size: 2.5rem;
            }
            .section-title:after {
                left: 0;
                transform: none;
            }
        }
