/* Global & Original Styles preserved */
    .trust-badge-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 25px; font-size: 14px; opacity: 0.9; }
    .trust-item { display: flex; align-items: center; gap: 8px; }
    .faq-container { max-width: 800px; margin: 0 auto; }
    .faq-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 15px; padding: 20px; cursor: pointer; transition: all 0.3s; }
    .faq-item:hover { border-color: #25D366; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
    .faq-q { font-weight: 600; font-size: 18px; color: #333; display: flex; justify-content: space-between; }
    .faq-a { color: #666; margin-top: 10px; display: none; line-height: 1.6; border-top: 1px solid #eee; padding-top: 10px; }
    .faq-item.active .faq-a { display: block; }
    .faq-item.active .faq-q { color: #075E54; }
    .comp-table { width: 100%; border-collapse: collapse; margin-top: 30px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    .comp-table th, .comp-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid #eee; }
    .comp-table th { background: #f8f9fa; color: #333; font-weight: 700; }
    .comp-table .highlight { background: #e8f5e9; color: #075E54; font-weight: bold; }
    .keyword-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; text-align: left; }
    .keyword-item { background: #fff; padding: 15px; border-radius: 8px; border-left: 4px solid #25D366; box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-size: 15px; }
    
    /* AEO Direct Answer Styles */
    .aeo-direct-answer { background: #e8f5e9; border-left: 5px solid #075E54; padding: 20px; max-width: 900px; margin: 30px auto; border-radius: 0 8px 8px 0; font-size: 16px; line-height: 1.7; color: #2c3e50; }
    .aeo-direct-answer strong { color: #075E54; }

    @media (max-width: 768px) {
        .trust-badge-row { gap: 15px; flex-direction: column; align-items: center; }
        .comp-table { display: block; overflow-x: auto; }
    }