/* --- Стили для страницы "Технология" --- */

.intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.history-list {
    list-style: none;
    padding-left: 0;
    position: relative;
    max-width: 700px;
    margin: 30px auto 0 auto;
}

.history-list li {
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
}

.history-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--main-red);
    border-radius: 50%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--main-red);
}

.benefit-card h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.research-links {
    margin-top: 30px;
}

.research-item {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.research-item p {
    margin-top: 0;
    margin-bottom: 15px;
}
.research-item a {
    font-weight: 600;
    color: var(--main-red);
    text-decoration: none;
}
.research-item a:hover {
    text-decoration: underline;
}

/* --- Стили для подсекций с исследованиями --- */
.research-section {
    margin-top: 40px;
}

.research-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}
