/* Общие стили текста */
.ta-isolated-page p {
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: justify;
    font-size: 16px;
    color: #333;
}

.ta-isolated-page h2 {
    color: #006400;
    font-size: 24px;
    margin: 35px 0 20px;
    font-weight: bold;
}

.ta-isolated-page h3 {
    color: #006400;
    font-size: 19px;
    margin: 25px 0 14px;
    font-weight: bold;
}

.ta-isolated-page h4 {
    color: #006400;
    font-size: 17px;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.ta-isolated-page a {
    color: #006400;
    text-decoration: none;
    border-bottom: 1px dotted #006400;
    transition: all 0.2s ease;
}

.ta-isolated-page a:hover {
    color: #28a745;
    border-bottom: 1px solid #28a745;
}

/* Кнопки CTA */
.ta-isolated-page .intro-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
    justify-content: center;
}

.ta-isolated-page .intro-btn {
    background: #FFD700;
    color: #000;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 240px;
    font-size: 16px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    border: 2px solid #FFD700;
    cursor: pointer;
}

.ta-isolated-page .intro-btn:hover {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,100,0,0.3);
}

/* Слайдер */
.ta-isolated-page .photo-slider {
    max-width: 100%;
    margin: 30px auto;
    position: relative;
}

.ta-isolated-page .slider-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,100,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.ta-isolated-page .slides {
    display: flex;
    transition: transform 0.4s ease;
}

.ta-isolated-page .slides > div {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
}

.ta-isolated-page .slides img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.ta-isolated-page .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    font-size: 20px;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ta-isolated-page .slider-btn:hover {
    background: #28a745;
    color: #fff;
}

.ta-isolated-page .slider-btn.prev { left: 10px; }
.ta-isolated-page .slider-btn.next { right: 10px; }

.ta-isolated-page .slider-dots {
    text-align: center;
    margin-top: 12px;
}

.ta-isolated-page .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ta-isolated-page .dot.active {
    background: #28a745;
}

.ta-isolated-page .slider-caption {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Таблица сравнения */
.ta-isolated-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.ta-isolated-page .comparison-table th {
    background: #28a745;
    color: #fff;
    padding: 14px 12px;
    text-align: left;
    font-weight: bold;
}

.ta-isolated-page .comparison-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.ta-isolated-page .comparison-table tr:nth-child(even) {
    background: #f8fff8;
}

.ta-isolated-page .comparison-table tr:hover {
    background: #e8f5e9;
}

/* Блок преимуществ */
.ta-isolated-page .advantage-box {
    background: #f0fff0;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.ta-isolated-page .advantage-box h3 {
    color: #006400;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.ta-isolated-page .advantage-row {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    gap: 15px;
}

.ta-isolated-page .advantage-icon {
    background: #28a745;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.ta-isolated-page .advantage-text {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

/* Блок путей */
.ta-isolated-page .route-section {
    background: #f0fff0;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.ta-isolated-page .route-section h3 {
    color: #006400;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.ta-isolated-page .route-item {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.ta-isolated-page .route-number {
    background: #28a745;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.ta-isolated-page .route-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
    text-align: left;
}

.ta-isolated-page .map-container {
    margin: 30px 0;
    text-align: center;
}

.ta-isolated-page .map-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,100,0,0.15);
    border: 2px solid #28a745;
}

.ta-isolated-page .map-caption {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    font-style: italic;
}

.ta-isolated-page .map-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.ta-isolated-page .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.ta-isolated-page .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.ta-isolated-page .legend-color.green {
    background: #4CAF50;
}

.ta-isolated-page .legend-color.gray {
    background: #9E9E9E;
}

/* Блок стоимости */
.ta-isolated-page .cost-factors {
    background: #fff9e6;
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.ta-isolated-page .cost-factors h3 {
    color: #006400;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.ta-isolated-page .factor-row {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    gap: 15px;
}

.ta-isolated-page .factor-icon {
    background: #FFD700;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.ta-isolated-page .factor-text {
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.ta-isolated-page .price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
}

.ta-isolated-page .price-table th {
    background: #28a745;
    color: #fff;
    padding: 14px 12px;
    text-align: left;
    font-weight: bold;
}

.ta-isolated-page .price-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.ta-isolated-page .price-table tr:nth-child(even) {
    background: #f8fff8;
}

.ta-isolated-page .price-table tr:hover {
    background: #e8f5e9;
}

/* Блок этапов работы */
.ta-isolated-page .order-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
    gap: 25px;
}

.ta-isolated-page .order-step {
    background: #f8fff8;
    border: 1px solid #a5d6a7;
    border-radius: 12px;
    padding: 28px 25px;
    flex: 1;
    min-width: 240px;
    box-shadow: 0 3px 10px rgba(0, 100, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.ta-isolated-page .order-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 100, 0, 0.15);
    border-color: #81c784;
}

.ta-isolated-page .step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.ta-isolated-page .step-title {
    font-size: 19px;
    color: #006400;
    margin: 0 0 14px 0;
    font-weight: bold;
    line-height: 1.3;
}

.ta-isolated-page .step-description {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

.ta-isolated-page .step-list {
    padding-left: 22px;
    margin: 0;
    line-height: 1.65;
    font-size: 15px;
    color: #333;
}

.ta-isolated-page .step-list li {
    margin-bottom: 6px;
}

.ta-isolated-page .step-list li:last-child {
    margin-bottom: 0;
}

/* Блок документов */
.ta-isolated-page .documents-box {
    background: #f0fff0;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.ta-isolated-page .documents-box h3 {
    color: #006400;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.ta-isolated-page .doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ta-isolated-page .doc-list li {
    padding: 12px 15px;
    margin: 10px 0;
    background: #fff;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.ta-isolated-page .doc-list li strong {
    color: #006400;
}

/* FAQ аккордеон */
.ta-isolated-page .faq-container {
    margin: 25px 0;
}

.ta-isolated-page .faq-item {
    background: #f8fff8;
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    margin: 15px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ta-isolated-page .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.1);
    border-color: #81c784;
}

.ta-isolated-page .faq-question {
    font-weight: bold;
    color: #006400;
    font-size: 17px;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fff8;
    transition: all 0.3s ease;
}

.ta-isolated-page .faq-question:hover {
    background: #e8f5e9;
}

.ta-isolated-page .faq-question::after {
    content: '+';
    font-size: 24px;
    color: #28a745;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.ta-isolated-page .faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.ta-isolated-page .faq-answer {
    color: #444;
    line-height: 1.6;
    font-size: 15px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.ta-isolated-page .faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid #a5d6a7;
}

.ta-isolated-page .faq-item.active {
    background: #fff;
    border-color: #28a745;
}

/* Финальный CTA блок */
.ta-isolated-page .final-cta {
    background: #fff9e6;
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 35px 25px;
    margin: 35px 0;
    text-align: center;
}

.ta-isolated-page .final-cta h3 {
    color: #006400;
    font-size: 22px;
    margin: 0 0 20px 0;
    font-weight: bold;
}

.ta-isolated-page .final-cta p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 16px;
    color: #333;
}

.ta-isolated-page .contact-info {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: inline-block;
    text-align: left;
}

.ta-isolated-page .contact-info p {
    margin: 10px 0;
    text-align: left;
    font-size: 15px;
}

.ta-isolated-page .contact-info strong {
    color: #006400;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .ta-isolated-page p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .ta-isolated-page h2 {
        font-size: 20px;
        margin: 25px 0 15px;
        padding: 0 10px;
    }
    
    .ta-isolated-page h3 {
        font-size: 17px;
        padding: 0 10px;
    }
    
    .ta-isolated-page h4 {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .ta-isolated-page .intro-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .ta-isolated-page .intro-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .ta-isolated-page .slider-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .ta-isolated-page .slides img {
        max-height: 250px;
    }
    
    .ta-isolated-page .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .ta-isolated-page .comparison-table,
    .ta-isolated-page .price-table {
        font-size: 13px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .ta-isolated-page .comparison-table th,
    .ta-isolated-page .comparison-table td,
    .ta-isolated-page .price-table th,
    .ta-isolated-page .price-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    .ta-isolated-page .advantage-box,
    .ta-isolated-page .cost-factors {
        padding: 15px;
    }
    
    .ta-isolated-page .advantage-row,
    .ta-isolated-page .factor-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .ta-isolated-page .route-section {
        padding: 15px;
    }
    
    .ta-isolated-page .route-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .ta-isolated-page .map-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .ta-isolated-page .route-content p {
        text-align: center;
    }
    
    .ta-isolated-page .order-steps-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .ta-isolated-page .order-step {
        width: 100%;
        padding: 20px;
    }
    
    .ta-isolated-page .documents-box,
    .ta-isolated-page .final-cta {
        padding: 15px;
    }
    
    .ta-isolated-page .faq-question {
        padding: 15px;
        font-size: 16px;
    }
    
    .ta-isolated-page .faq-answer {
        padding: 0 15px;
        font-size: 14px;
    }
    
    .ta-isolated-page .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .ta-isolated-page .contact-info {
        width: 100%;
        text-align: center;
    }
    
    .ta-isolated-page .contact-info p {
        text-align: center;
    }
}