  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            background: #0a0a0a;
        }

        /* Animated Background */
        .help-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .help-bg::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Hamburger Menu */
        .hamburger {
            position: fixed;
            top: 2rem;
            left: 2rem;
            z-index: 2000;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translateY(10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-10px);
        }

        /* Side Menu */
        .side-menu {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100vh;
            background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
            backdrop-filter: blur(20px);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1999;
            overflow-y: auto;
            box-shadow: 5px 0 30px rgba(0,0,0,0.5);
        }

        .side-menu.active {
            left: 0;
        }

        .menu-content {
            padding: 100px 40px 40px;
        }

        .menu-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .menu-logo::after {
            content: '❤️';
            font-size: 2rem;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .menu-links {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .menu-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .menu-links a::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 3px;
            background: #e74c3c;
            transition: width 0.3s ease;
        }

        .menu-links a:hover {
            color: #e74c3c;
            padding-left: 20px;
        }

        .menu-links a:hover::before {
            width: 15px;
        }

        .menu-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .menu-cta {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .menu-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 2rem 5%;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            padding: 1rem 5%;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            margin-left: 80px;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: #e74c3c;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .language-selector {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            position: relative;
        }

        .language-selector:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.3);
        }

        .current-flag {
            font-size: 1.3rem;
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.5rem;
            background: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            min-width: 180px;
        }

        .language-selector.active .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
            color: white;
            text-decoration: none;
        }

        .language-option:hover {
            background: rgba(231, 76, 60, 0.2);
        }

        .language-option.active {
            background: rgba(231, 76, 60, 0.3);
        }

        .language-option span:first-child {
            font-size: 1.5rem;
        }

        .btn-login {
            background: transparent;
            color: white;
            padding: 0.8rem 2rem;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: white;
            color: #e74c3c;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            margin-top: 100px;
            padding: 80px 5% 60px;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
            font-weight: 900;
            animation: fadeInUp 1s ease;
        }

        .hero h1 span {
            background: linear-gradient(45deg, #e74c3c, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        /* Search Section */
        .search-section {
            padding: 0 5% 60px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .search-container {
            position: relative;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .search-input {
            width: 100%;
            padding: 1.5rem 4rem 1.5rem 1.5rem;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .search-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .search-input:focus {
            outline: none;
            border-color: #e74c3c;
            background: rgba(255,255,255,0.1);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: rgba(255,255,255,0.5);
        }

        /* Popular Topics */
        .popular-topics {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .topic-tag {
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            border: 1px solid rgba(231, 76, 60, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .topic-tag:hover {
            background: rgba(231, 76, 60, 0.3);
            transform: translateY(-2px);
        }

        /* Categories Section */
        .categories-section {
            padding: 80px 5%;
            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
        }

        .categories-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .categories-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 3rem;
            font-weight: 800;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .category-card:hover::before {
            opacity: 1;
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: rgba(231, 76, 60, 0.3);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 5px 10px rgba(231, 76, 60, 0.3));
        }

        .category-card h3 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .category-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .category-count {
            display: inline-block;
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-top: 1rem;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 5%;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 3rem;
            font-weight: 800;
        }

        .faq-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(231, 76, 60, 0.3);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255,255,255,0.05);
        }

        .faq-question h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #e74c3c;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 5%;
            background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-section h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .contact-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info {
            display: grid;
            gap: 2rem;
        }

        .contact-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 20px;
            display: flex;
            gap: 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateX(10px);
            border-color: rgba(231, 76, 60, 0.3);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: #e74c3c;
            min-width: 50px;
        }

        .contact-details h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 3rem;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #fff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #e74c3c;
            background: rgba(255,255,255,0.1);
        }

        .form-submit {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
            width: 100%;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
        }

        /* Quick Links */
        .quick-links {
            padding: 60px 5%;
            text-align: center;
        }

        .quick-links h3 {
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        .links-grid {
            max-width: 800px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .quick-link {
            background: rgba(231, 76, 60, 0.1);
            border: 1px solid rgba(231, 76, 60, 0.3);
            padding: 1.5rem;
            border-radius: 15px;
            color: #e74c3c;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .quick-link:hover {
            background: rgba(231, 76, 60, 0.2);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 60px 5% 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #e74c3c;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #e74c3c;
        }

        .social-icons {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: #e74c3c;
            transform: translateY(-5px) rotate(360deg);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .side-menu {
                width: 280px;
                left: -280px;
            }

            .links-grid {
                grid-template-columns: 1fr;
            }
        }