        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #0a0a0a;
            color: #fafafa;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            text-align: center;
            padding: 60px 0 40px;
            animation: fadeInDown 1s ease;
        }

        .logo-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 150px;
            height: 150px;
            background: #fff;
            border-radius: 50%;
            margin-bottom: 25px;
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
            animation: pulse 2s infinite;
            padding: 10px;
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        header h1 {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        header p {
            font-size: 1em;
            color: #a8a8a8;
            font-weight: 400;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.3em;
            font-weight: 700;
            color: #ffd700;
        }

        .stat-label {
            font-size: 0.9em;
            color: #a8a8a8;
        }

        .hero {
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
            animation: fadeIn 1.5s ease;
        }

        .hero h2 {
            font-size: 1.8em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .hero p {
            color: #a8a8a8;
            line-height: 1.6;
            font-size: 1em;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .feature-card {
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-card:hover {
            border-color: #ffd700;
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 32px;
            color: #000;
        }

        .feature-card h3 {
            font-size: 1.3em;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .feature-card p {
            color: #a8a8a8;
            font-size: 0.95em;
            line-height: 1.5;
        }

        .cta-section {
            text-align: center;
            margin: 60px 0;
            padding: 50px 20px;
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 12px;
        }

        .cta-section h2 {
            font-size: 2em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .cta-section p {
            color: #a8a8a8;
            margin-bottom: 30px;
            font-size: 1em;
        }

        .btn {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #000;
            border: none;
            padding: 15px 35px;
            font-size: 1em;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            margin: 10px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
        }

        .btn i {
            font-size: 1.1em;
        }

        .quiz-section {
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 12px;
            padding: 40px;
            margin: 30px 0;
            display: none;
        }

        .quiz-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .question {
            font-size: 1.2em;
            margin-bottom: 20px;
            font-weight: 600;
            line-height: 1.5;
        }

        .options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .option {
            background: #262626;
            padding: 16px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-align: left;
        }

        .option:hover {
            background: #333;
            border-color: #ffd700;
        }

        .progress-bar {
            background: #262626;
            height: 8px;
            border-radius: 10px;
            margin: 20px 0;
            overflow: hidden;
        }

        .progress-fill {
            background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
            height: 100%;
            transition: width 0.5s ease;
        }

        .score-display {
            font-size: 1.5em;
            text-align: center;
            margin: 20px 0;
            font-weight: 700;
            color: #ffd700;
        }

        footer {
            text-align: center;
            padding: 60px 0 40px;
            margin-top: 80px;
            border-top: 1px solid #262626;
        }

        .footer-content h3 {
            font-size: 1.5em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .contact-info {
            margin: 25px 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fafafa;
            text-decoration: none;
            padding: 12px 24px;
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            border-color: #ffd700;
            background: #262626;
        }

        .contact-link i {
            font-size: 1.2em;
            color: #ffd700;
        }

        .footer-bottom {
            margin-top: 30px;
            color: #a8a8a8;
            font-size: 0.9em;
        }

        .gallery-section, .partners-section {
            margin: 60px 0;
        }

        .gallery-section h2, .partners-section h2 {
            text-align: center;
            font-size: 2em;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .gallery-section h2 i, .partners-section h2 i {
            color: #ffd700;
            margin-right: 10px;
        }

        .section-subtitle {
            text-align: center;
            color: #a8a8a8;
            margin-bottom: 40px;
            font-size: 1em;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            border-color: #ffd700;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
        }

        .gallery-placeholder i {
            font-size: 3em;
            color: #ffd700;
            margin-bottom: 15px;
        }

        .gallery-placeholder p {
            color: #fafafa;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .gallery-placeholder small {
            color: #a8a8a8;
            font-size: 0.85em;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .partner-card {
            background: #1a1a1a;
            border: 1px solid #262626;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            border-color: #ffd700;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .partner-logo-placeholder {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #262626 0%, #333 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            border: 2px solid #333;
        }

        .partner-logo-placeholder i {
            font-size: 2.5em;
            color: #ffd700;
        }

        .partner-logo-img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin: 0 auto 15px;
            padding: 10px;
            background: #fff;
            border-radius: 12px;
            display: block;
        }

        .partner-card h4 {
            font-size: 1em;
            font-weight: 600;
            color: #fafafa;
            margin-bottom: 5px;
        }

        .partner-desc {
            font-size: 0.85em;
            color: #a8a8a8;
            margin: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
            }
            50% {
                box-shadow: 0 8px 50px rgba(255, 215, 0, 0.6);
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 1.8em;
            }
            
            .hero, .cta-section, .quiz-section {
                padding: 25px;
            }
            
            .feature-card {
                padding: 25px;
            }

            .stats {
                gap: 20px;
            }
        }