/* Основные стили для статьи о сдаче техники на запчасти */
.devices-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.device-category {
    flex: 1 1 300px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.device-category h3 {
    color: green;
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.reviews {
    margin: 30px 0;
}

.review {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-text {
    line-height: 1.5;
}

.warning-box {
    background-color: #f8f9fa;
    border-left: 4px solid green;
    padding: 20px;
    margin: 30px 0;
}

.price-calculator {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.price-calculator h2 {
    margin-top: 0;
    color: green;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group select, 
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#price-result {
    font-size: 24px;
    font-weight: bold;
    color: green;
    margin: 15px 0;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
}

/* Анимации */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.highlight-box {
    animation: pulse 2s infinite;
    background: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid #a5d6a7;
}

/* Адаптивность */
@media (max-width: 768px) {
    .devices-list {
        flex-direction: column;
    }
    
    .device-category {
        flex: 1 1 auto;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-date {
        margin-top: 5px;
    }
}
/* Стили для новых блоков */
.real-stories {
    margin: 40px 0;
}

.story {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    align-items: center;
}

.story-image {
    flex: 1 1 200px;
    max-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.story-content {
    flex: 2 1 300px;
}

.story-title {
    color: green;
    margin-top: 0;
}

.story-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: green;
    margin: 10px 0;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

/* Стили для простого FAQ */
.faq-section {
    margin: 40px 0;
}

.faq-list {
    margin: 20px 0;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: bold;
    font-size: 18px;
    color: green;
    margin-bottom: 10px;
}

.faq-answer {
    line-height: 1.6;
    padding-left: 15px;
    border-left: 3px solid #e0e0e0;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.comparison-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tr:hover {
    background-color: #f1f1f1;
}

.check-icon {
    color: green;
    font-weight: bold;
}

.cross-icon {
    color: #e53935;
    font-weight: bold;
}