
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .bg-texture {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, #1a0000 0%, #0a0a0a 50%, #1a0000 100%),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 0, 0, 0.03) 10px, rgba(139, 0, 0, 0.03) 20px);
            z-index: -1;
            animation: bgShift 20s ease infinite;
        }

        @keyframes bgShift {
            0%, 100% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d0000 100%);
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #8b0000;
        }

        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        h1 {
            font-size: 3.5em;
            background: linear-gradient(135deg, #ff0000, #8b0000, #ff4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            animation: titleGlow 3s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes titleGlow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5)); }
            50% { filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.8)); }
        }

        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .meta-item {
            background: rgba(139, 0, 0, 0.2);
            padding: 15px 25px;
            border-radius: 10px;
            border: 1px solid #8b0000;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .meta-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.5);
            background: rgba(139, 0, 0, 0.3);
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2em;
        }

        .stars {
            color: #ffd700;
            font-size: 1.5em;
        }

        .section {
            padding: 60px 0;
            position: relative;
        }

        .section-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            background: linear-gradient(135deg, #ff0000, #8b0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .case-study {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(0, 0, 0, 0.5));
            padding: 40px;
            border-radius: 15px;
            border: 2px solid #8b0000;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .case-study:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(139, 0, 0, 0.5);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid #8b0000;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
            animation: cardPulse 10s ease-in-out infinite;
        }

        @keyframes cardPulse {
            0%, 100% { transform: scale(0.8); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .stat-number {
            font-size: 3em;
            font-weight: bold;
            color: #ff0000;
            position: relative;
            z-index: 1;
        }

        .testimonial-slider {
            overflow: hidden;
            position: relative;
            padding: 40px 0;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
        }

        .testimonial-track {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 30px;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .testimonial-card {
            min-width: 350px;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
            padding: 30px;
            border-radius: 15px;
            border: 1px solid #8b0000;
            flex-shrink: 0;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .client-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #8b0000, #ff0000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5em;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            overflow: hidden;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #8b0000;
        }

        th {
            background: linear-gradient(135deg, #8b0000, #ff0000);
            font-weight: bold;
            text-transform: uppercase;
        }

        tr:hover {
            background: rgba(139, 0, 0, 0.1);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(139, 0, 0, 0.1);
            margin: 15px 0;
            border-radius: 10px;
            border: 1px solid #8b0000;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1em;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: rgba(139, 0, 0, 0.2);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            background: linear-gradient(135deg, #ff0000, #8b0000);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.3em;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #ff0000;
            box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 0, 0, 0.7);
        }

        footer {
            background: linear-gradient(135deg, #1a1a1a, #2d0000);
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #8b0000;
            margin-top: 80px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ff4444;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff0000;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2em; }
            .section-title { font-size: 1.8em; }
            .meta-info { flex-direction: column; gap: 15px; }
            .testimonial-card { min-width: 280px; }
            
            /* Make 3-column grids responsive */
            section[style*="grid-template-columns: repeat(3, 1fr)"] > div,
            div[style*="grid-template-columns: repeat(3, 1fr)"] {
                grid-template-columns: 1fr !important;
            }
        }
    </style>