        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .match-aura-about-us-body{
            background: linear-gradient(135deg, #8b0000 0%, #8b0000 50%, #a94442 100%);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }

        /* Main Content */
        .match-aura-about-us {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .match-aura-hero {
            text-align: center;
            margin-bottom: 60px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .match-aura-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .match-aura-hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #ffd700;
            border-radius: 2px;
        }

        .match-aura-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        .match-aura-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .match-aura-story {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .match-aura-story h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .match-aura-story h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ffd700;
            border-radius: 2px;
        }

        .match-aura-story p {
            line-height: 1.7;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .match-aura-image {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .match-aura-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Process Section */
        .match-aura-process {
            margin-bottom: 60px;
        }

        .match-aura-process h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .match-aura-process h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #ffd700;
            border-radius: 2px;
        }

        .match-aura-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .match-aura-step {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .match-aura-step:hover {
            transform: translateY(-10px);
        }

        .match-aura-step-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: #ffd700;
        }

        .match-aura-step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .match-aura-step p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Values Section */
        .match-aura-values {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .match-aura-values h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .match-aura-values h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #ffd700;
            border-radius: 2px;
        }

        .match-aura-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .match-aura-value-item {
            padding: 25px;
        }

        .match-aura-value-item i {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .match-aura-value-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .match-aura-value-item p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Stats Section */
        .match-aura-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .match-aura-stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .match-aura-stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 10px;
        }

        .match-aura-stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .match-aura-content {
                grid-template-columns: 1fr;
            }
            
            .match-aura-hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .match-aura-hero h1 {
                font-size: 2.5rem;
            }
            
            .match-aura-hero p {
                font-size: 1.1rem;
            }
            
            .match-aura-story, .match-aura-values {
                padding: 30px;
            }
            
            .match-aura-step {
                padding: 25px;
            }
            
            .match-aura-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .match-aura-hero {
                padding: 30px 20px;
            }
            
            .match-aura-hero h1 {
                font-size: 2rem;
            }
            
            .match-aura-story h2, .match-aura-process h2, .match-aura-values h2 {
                font-size: 1.8rem;
            }
            
            .match-aura-story, .match-aura-values {
                padding: 25px;
            }
            
            .match-aura-step {
                padding: 20px;
            }
            
            .match-aura-stats {
                grid-template-columns: 1fr;
            }
        }