.geo-answer-first {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.geo-answer-first .geo-summary {
    margin: 0;
}

.geo-passage {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.geo-passage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #667eea;
    border-radius: 2px;
}

.geo-passage[data-passage-id="1"]::before {
    background: #4CAF50;
}

.geo-passage[data-passage-id="2"]::before {
    background: #2196F3;
}

.geo-passage[data-passage-id="3"]::before {
    background: #FF9800;
}

.geo-internal-link {
    color: #667eea;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.geo-internal-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
    background: rgba(102, 126, 234, 0.1);
    padding-bottom: 2px;
}

.geo-faq-section {
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.geo-faq-item {
    border-bottom: 1px solid #eee;
}

.geo-faq-item:last-child {
    border-bottom: none;
}

.geo-faq-question {
    background: #f9f9f9;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.geo-faq-question:hover {
    background: #f5f5f5;
}

.geo-faq-question::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.geo-faq-item.active .geo-faq-question::after {
    transform: rotate(45deg);
}

.geo-faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.geo-faq-item.active .geo-faq-answer {
    padding: 15px;
    max-height: 200px;
}

.geo-howto-step {
    position: relative;
    padding: 15px 15px 15px 60px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 10px;
}

.geo-howto-step::before {
    content: attr(data-step);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.geo-seo-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.geo-author-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .geo-answer-first {
        padding: 15px;
        font-size: 14px;
    }
    
    .geo-howto-step {
        padding-left: 50px;
    }
    
    .geo-howto-step::before {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
}
