* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /*
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #fbfbfb;
            color: #1e1e1e;
        }*/

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #fbfbfb;
            color: #1e1e1e;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #1e1e1e;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #ff5c5c;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1e1e1e;
        }

        .faq-header p {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: white;
            border: 2px solid #1e1e1e;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: -4px 4px 0px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: -6px 6px 0px black;
            transform: translateY(-2px);
        }

        .faq-item summary {
            padding: 24px 30px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: #1e1e1e;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background: linear-gradient(135deg, #fbfbfb, #ffffff);
            transition: all 0.3s ease;
        }

        .faq-item summary:hover {
            background: linear-gradient(135deg, #f0f0f0, #fbfbfb);
            color: #ff5c5c;
        }

        .faq-item summary::after {
            content: '▼';
            font-size: 12px;
            margin-left: 20px;
            transition: transform 0.3s ease;
            color: #ff5c5c;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 30px 24px 30px;
            background: white;
            border-top: 1px solid #e0e0e0;
            animation: slideDown 0.3s ease-out;
        }

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

        .faq-answer p {
            font-size: 15px;
            line-height: 1.8;
            color: #444;
            margin: 0;
        }

        .faq-answer ul, .faq-answer ol {
            margin-top: 15px;
            margin-left: 20px;
            font-size: 15px;
            line-height: 1.8;
            color: #444;
        }

        .faq-answer li {
            margin-bottom: 10px;
        }

        .btn-primary {
            background: #ff5c5c;
            color: #1e1e1e;
            border: 2px solid #1e1e1e;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: -5px 5px 0px 0px black;
            display: inline-block;
            text-decoration: none;
            text-align: center;
            margin-top: 20px;
        }

        .btn-primary:hover {
            box-shadow: -7px 7px 0px 0px black;
            transform: translateY(-2px);
        }

        .footer {
            background: #1e1e1e;
            color: #fbfbfb;
            padding: 60px 0;
            margin-top: 80px;
        }

        .red-badge {
            background: #ff5c5c;
            color: white;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 15px;
                font-size: 14px;
            }

            .faq-container {
                padding: 40px 20px;
            }

            .faq-header h1 {
                font-size: 32px;
            }

            .faq-item summary {
                padding: 18px 20px;
                font-size: 15px;
            }

            .faq-answer {
                padding: 0 20px 18px 20px;
            }
        }