/* Additional CSS for guide pages */

.qa-table {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qa-row {
    border-bottom: 1px solid #ecf0f1;
    padding: 20px;
    background: white;
    transition: background-color 0.3s;
}

.qa-row:hover {
    background-color: #f9f9f9;
}

.qa-row:last-child {
    border-bottom: none;
}

.qa-question {
    margin-bottom: 15px;
    font-size: 16px;
    color: #2c3e50;
}

.qa-question strong {
    color: #3498db;
}

.qa-answer {
    margin-left: 20px;
    padding-left: 15px;
    border-left: 4px solid #3498db;
}

.qa-answer p {
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.qa-answer strong {
    color: #27ae60;
}

.red-flags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.flag {
    background: #ffebee;
    border-left: 5px solid #e74c3c;
    padding: 20px;
    border-radius: 4px;
}

.flag h4 {
    color: #c0392b;
    margin-bottom: 10px;
    font-size: 16px;
}

.flag p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.numbered-list {
    margin: 30px 0;
}

.numbered-list .item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f0f7ff;
    border-radius: 8px;
    border-right: 4px solid #3498db;
}

.numbered-list .number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
    text-align: center;
}

.numbered-list .content h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 18px;
}

.numbered-list .content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.content-list {
    list-style-position: inside;
    margin: 15px 0;
    padding-left: 20px;
}

.content-list li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.content-list li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}

.licenses-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.license {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.license h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
}

.license p {
    color: rgba(255,255,255,0.95);
    font-size: 14px;
    line-height: 1.6;
}

.content-section {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #34495e;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .numbered-list .item {
        flex-direction: column;
        align-items: flex-start;
    }

    .numbered-list .number {
        font-size: 24px;
    }

    .red-flags {
        grid-template-columns: 1fr;
    }

    .licenses-info {
        grid-template-columns: 1fr;
    }

    .qa-row {
        padding: 15px;
    }

    .qa-answer {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 3px solid #3498db;
        padding-top: 12px;
    }
}
