
        .faq-container {
            max-width: 900px; /* Increased width for PC display */
            margin: 20px auto;
            padding: 0 20px; /* Added padding to prevent content from touching edges */
        }
        .faq-header {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 18px; /* Remaining 18px as spacing */
            height: 48px; /* Fixed height for FAQ header */
            line-height: 48px; /* Vertically center the text */
        }
        .faq-item {
            border: 1px solid #ddd;
            margin-bottom: 10px;
            padding: 10px;
            background-color: #f9f9f9;
        }
        .faq-question {
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 22px; /* Question font size set to 22px */
        }
        .faq-answer {
            display: none;
            padding-top: 10px;
            font-size: 22px; /* Answer font size set to 22px */
        }
        .faq-answer.active {
            display: block;
        }
        .faq-toggle {
            font-size: 18px;
            transition: transform 0.2s;
        }
        .faq-toggle.minus {
            transform: rotate(45deg);
        }
    