
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fdfdfd;
            margin: 0;
            padding: 40px 20px;
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #333;
        }
        .faq-category {
            margin-bottom: 35px;
        }
        .faq-category-title {
            font-size: 1.5rem;
            color: #E3A321;
            border-bottom: 2px solid #E3A321;
            padding-bottom: 10px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 6px;
            overflow: hidden;
            background-color: #fafafa;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 18px 20px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        .faq-question:hover {
            background-color: #f1f1f1;
        }
        .faq-question.active {
            color: #E3A321;
            background-color: #fff;
            border-bottom: 1px solid #eee;
        }
        .faq-icon {
            font-size: 1.5rem;
            font-weight: 300;
            color: #999;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .faq-question.active .faq-icon {
            transform: rotate(45deg);
            color: #E3A321;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background-color: #fff;
        }
        .faq-answer-inner {
            padding: 20px;
            color: #555;
            font-size: 1rem;
        }
    