       
body {
    background: linear-gradient(135deg, #f9f5e9 0%, #f0e6d2 100%);
    color: #3c2f2f;
    line-height: 1.6;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Заголовок страницы */
.page-header {
    text-align: center;
    margin: 50px 0 40px;
    padding: 0 20px;
}

.page-title {
    font-size: 42px;
    color: #4e342e;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #8d6e63;
}

.page-subtitle {
    font-size: 20px;
    color: #8d6e63;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* Состояния книг */
.conditions-container {
    margin: 60px 0;
}

.condition-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s;
}

.condition-section:hover {
    transform: translateY(-5px);
}

.condition-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.condition-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 28px;
}

.condition-body {
    padding: 30px;
}

.condition-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4e342e;
}

.condition-examples {
    margin-top: 20px;
    padding: 20px;
    background: #f8f5f0;
    border-radius: 8px;
    border-left: 4px solid #d7ccc8;
}

.examples-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #5d4037;
    display: flex;
    align-items: center;
    gap: 10px;
}

.examples-list {
    padding-left: 25px;
}

.examples-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.condition-ideal .condition-header { background: #27ae60; }
.condition-excellent .condition-header { background: #2ecc71; }
.condition-very-good .condition-header { background: #f1c40f; }
.condition-good .condition-header { background: #f39c12; }
.condition-fair .condition-header { background: #e67e22; }
.condition-poor .condition-header { background: #e74c3c; }

/* Дополнительная информация */
.additional-info {
    background: #8d6e63;
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-title {
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: #f8f5f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.info-card i {
    font-size: 36px;
    margin-bottom: 20px;
    color: #f8f5f0;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #f8f5f0;
}

.info-card p {
    line-height: 1.6;
    color: #d7ccc8;
}


/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.condition-section {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.condition-section:nth-child(1) { animation-delay: 0.1s; }
.condition-section:nth-child(2) { animation-delay: 0.2s; }
.condition-section:nth-child(3) { animation-delay: 0.3s; }
.condition-section:nth-child(4) { animation-delay: 0.4s; }
.condition-section:nth-child(5) { animation-delay: 0.5s; }
.condition-section:nth-child(6) { animation-delay: 0.6s; }

/* Адаптивность */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .condition-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .condition-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .condition-body {
        padding: 20px;
    }
    
    .condition-description {
        font-size: 16px;
    }
    
    .additional-info {
        padding: 25px;
    }
    
    .info-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }
        
    
    .page-title {
        font-size: 28px;
    }
}
