        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .match-aura-help-support{
            background: linear-gradient(135deg, #8b0000 0%, #8b0000 50%, #a94442 100%);
            color: #fff;
            min-height: 100vh;
            padding: 20px;
        }

        .matchaura-help-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .matchaura-help-hero {
            text-align: center;
            margin-bottom: 50px;
            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);
        }

        .matchaura-help-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .matchaura-help-hero h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: #ffd700;
            border-radius: 2px;
        }

        .matchaura-help-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        .matchaura-help-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .matchaura-help-section {
            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);
        }

        .matchaura-help-title {
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .matchaura-help-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ffd700;
            border-radius: 2px;
        }

        .matchaura-help-faq {
            margin-top: 30px;
        }

        .matchaura-help-faq-item {
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .matchaura-help-faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .matchaura-help-faq-question:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .matchaura-help-faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0.9;
            line-height: 1.6;
        }

        .matchaura-help-faq-item.active .matchaura-help-faq-answer {
            padding: 0 20px 20px 20px;
            max-height: 200px;
        }

        .matchaura-help-faq-icon {
            transition: transform 0.3s ease;
        }

        .matchaura-help-faq-item.active .matchaura-help-faq-icon {
            transform: rotate(180deg);
        }

        .matchaura-help-contact {
            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);
            text-align: center;
        }

        .matchaura-help-contact-title {
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .matchaura-help-contact-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #ffd700;
            border-radius: 2px;
        }

        .matchaura-help-contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .matchaura-help-contact-item {
            padding: 25px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .matchaura-help-contact-item:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
        }

        .matchaura-help-contact-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.8rem;
            color: #ffd700;
        }

        .matchaura-help-contact-item h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .matchaura-help-contact-item p {
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .matchaura-help-contact-link {
            color: #ffd700;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }

        .matchaura-help-contact-link:hover {
            text-decoration: underline;
        }

        .matchaura-help-image-section {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
        }

        .matchaura-help-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ffd700;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }

        .matchaura-help-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .matchaura-help-image-content {
            flex: 1;
        }

        .matchaura-help-image-title {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .matchaura-help-image-subtitle {
            opacity: 0.9;
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .matchaura-help-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .matchaura-help-hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .matchaura-help-hero {
                padding: 30px;
            }
            
            .matchaura-help-hero h1 {
                font-size: 2.4rem;
            }
            
            .matchaura-help-hero p {
                font-size: 1.1rem;
            }
            
            .matchaura-help-section, .matchaura-help-contact {
                padding: 30px;
            }
            
            .matchaura-help-title, .matchaura-help-contact-title {
                font-size: 1.9rem;
            }

            .matchaura-help-image-section {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .matchaura-help-image {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 480px) {
            .matchaura-help-hero, .matchaura-help-section, .matchaura-help-contact {
                padding: 25px 20px;
            }
            
            .matchaura-help-hero h1 {
                font-size: 2rem;
            }
            
            .matchaura-help-title, .matchaura-help-contact-title {
                font-size: 1.7rem;
            }

            .matchaura-help-contact-methods {
                grid-template-columns: 1fr;
            }

            .matchaura-help-image {
                width: 100px;
                height: 100px;
            }
        }