        .qa-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        .qa-form-side {
            flex: 1;
            min-width: 280px;
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            height: fit-content;
            position: sticky;
            top: 20px;
        }
        .qa-questions-side {
            flex: 2;
            min-width: 300px;
			padding-top: 25px;
        }
        .qa-form-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid #4e7cba;
            display: inline-block;
            padding-bottom: 5px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        .form-group input:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: #4e7cba;
            box-shadow: 0 0 0 3px rgba(255,193,7,0.1);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .captcha-wrapper {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
        }
        .g-recaptcha {
            display: inline-block;
        }
        .btn-submit {
            background: #4e7cba;
            color: #fff;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .btn-submit:hover {
            background: #335684;
            transform: translateY(-2px);
        }
        .question-item {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border-left: 4px solid #4e7cba;
        }
        .question-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .question-name {
            font-weight: 700;
            color: #333;
            font-size: 1.1rem;
        }
        .question-date {
            color: #888;
            font-size: 0.85rem;
        }
        .question-text {
            color: #444;
            line-height: 1.5;
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .answer-block {
            background: #f0f7f0;
            border-radius: 10px;
            padding: 15px;
            margin-top: 12px;
            border-left: 3px solid #28a745;
        }
        .answer-label {
            font-weight: 600;
            color: #28a745;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .answer-text {
            color: #555;
            line-height: 1.5;
        }
        .no-questions {
            text-align: center;
            padding: 50px;
            background: #f8f9fa;
            border-radius: 12px;
            color: #888;
        }
        @media (max-width: 768px) {
            .qa-container {
                flex-direction: column;
            }
            .qa-form-side {
                position: static;
            }
        }