/* Дополнительные стили для страницы цен */



/* Стили для хлебных крошек */
.breadcrumbs-container {
    background-color: #f8f9fa;
    padding: 10px 0;
    margin-bottom: 30px;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
}

.breadcrumbs li:after {
    content: "/";
    margin-left: 5px;
    color: #6c757d;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Стили для таблиц */
.price-section {
    margin-bottom: 40px;
}

.price-section .section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.data-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.data-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.data-table tr:hover {
    background-color: #f1f1f1;
}

/* Стили для информационного блока */
.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    margin: 20px 0 30px;
}

.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-content ul {
    padding-left: 20px;
}

.info-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Стили для связанных услуг */
.related-services {
    margin: 40px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-link {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

/* Стили для SEO-контента */
.seo-content {
    background-color: #f8f9fa;
    padding: 30px 0;
    margin-top: 40px;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.seo-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.seo-content a:hover {
    text-decoration: underline;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Адаптивность */
@media (max-width: 768px) {


    .table-responsive {
        overflow-x: auto;
    }

    .info-box {
        flex-direction: column;
    }

    .info-icon {
        margin-bottom: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {


    .data-table th,
    .data-table td {
        padding: 10px;
    }

    .breadcrumbs {
        font-size: 0.9rem;
    }
}
