/* Основные стили страницы тарифов */
.tariffs-page {
    padding: 30px 0 60px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #8B5A01;
    margin-bottom: 30px;
}

.tariffs-page-grid {
    display: flex;
    gap: 40px;
}

/* Левая колонка */
.tariffs-sidebar {
    width: 350px;
    min-width: 200px;
}

.services-tariffs-block {
    background: #F9F2DE;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.services-tariffs-block h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8B5A01;
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 12px;
    padding-left: 5px;
}

.services-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.services-list a:hover {
    color: #d23c01;
}

.services-list a.active {
    color: #8B5A01 !important;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
    pointer-events: none;
    cursor: default;
}

.services-list a.active::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d23c01;
    margin-right: 10px;
}

/* Правая колонка */
.tariffs-content {
    flex: 1;
}

.tariffs-intro {
    margin-bottom: 40px;
}

.tariffs-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Стили для файлов на скачивание */
.download-files {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.download-file {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #F9F2DE;
    border-radius: 5px;
    transition: all 0.3s;
    text-decoration: none !important;
    color: #333;
    border: 1px solid #E0D6B8;
}

.download-file:hover {
    background: #F0E5C4;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.download-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.download-info h3 {
    font-size: 1.2rem;
    color: #8B5A01;
    margin: 0 0 5px;
}

.download-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 992px) {
    .tariffs-page-grid {
        flex-direction: column;
    }

    .tariffs-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .download-files {
        flex-direction: column;
        gap: 15px;
    }

    .services-tariffs-block h3 {
        font-size: 1.5rem;
    }
}