:root {
            --primary-dark: #0f0b1f;
            --primary-accent: #6c63ff;
            --secondary-accent: #ff6584;
            --neutral-light: #f8f9fa;
            --neutral-mid: #e9ecef;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-accent) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2556 100%);
            color: white;
            padding: 8rem 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-accent);
            border-radius: 2px;
        }
        .service-card, .case-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
        }
        .service-card:hover, .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15) !important;
        }
        .team-img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border: 5px solid var(--neutral-mid);
        }
        .contact-info li {
            margin-bottom: 1rem;
        }
        .flink {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            margin: 0.5rem;
            background: var(--neutral-light);
            border-radius: 50px;
            color: var(--primary-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: white;
            border-color: var(--primary-accent);
            color: var(--primary-accent);
            transform: scale(1.05);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--neutral-mid);
        }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            margin-right: 0.75rem;
            transition: background 0.3s ease;
        }
        .social-icon:hover {
            background: var(--primary-accent);
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 0;
                text-align: center;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
