/* FAQ Page Styles */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff9900;
    border-radius: 4px;
}

.faq-item h4 {
    color: #ff9900;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

.faq-item a {
    color: #ff9900;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Educational Article Styles */
.article-content h4 {
    color: #ff9900;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.tips-list, .best-practices, .security-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.tip-item, .practice-item, .security-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border-left: 3px solid #ff9900;
}

.response-steps {
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.step-number {
    background: #ff9900;
    color: #000;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .faq-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .tips-list, .best-practices, .security-areas {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding: 0.75rem;
    }
}