/* Стили для страницы лазеров */

/* Основной контейнер */
.lasers-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Заголовок */
.lasers-header {
    margin-bottom: 40px;
}

.lasers-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--theme-color, #1e3a8a);
    margin: 0;
    text-align: center;
}

/* Секции */
.lasers-section {
    margin-bottom: 40px;
}

.lasers-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    text-indent: 30px; /* Красная строка */
    margin-bottom: 20px;
}

/* Подзаголовки */
.lasers-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: var(--theme-color, #1e3a8a);
    margin: 40px 0 20px 0;
    border-bottom: 2px solid var(--theme-color, #1e3a8a);
    padding-bottom: 10px;
}

/* Два изображения */
.lasers-two-images {
    margin-top: 30px;
}

.lasers-image {
    margin-bottom: 30px;
    text-align: center;
}

.lasers-image:last-child {
    margin-bottom: 0;
}

.lasers-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lasers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lasers-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.lasers-list li::before {
    content: "•";
    color: var(--theme-color, #1e3a8a);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}


/* Технические параметры */
.lasers-parameters {
    margin-bottom: 40px;
}

.lasers-table-container {
    overflow-x: auto;
    margin-top: 20px;
}

.lasers-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lasers-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.lasers-table tr:last-child {
    border-bottom: none;
}

.lasers-table td {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.5;
}

.lasers-table tr td:first-child {
    font-weight: 600;
    color: var(--theme-color, #1e3a8a);
    background: #f8fafc;
    width: 60%;
}

.lasers-table tr td:last-child {
    color: #333;
    text-align: left;
}

/* Адаптивность */
@media (max-width: 768px) {
    .lasers-content {
        padding: 20px 15px;
    }
    
    .lasers-title {
        font-size: 36px;
    }
    
    .lasers-image {
        margin-bottom: 20px;
    }
    
    .lasers-subtitle {
        font-size: 28px;
    }
    
    .lasers-text {
        font-size: 16px;
        text-indent: 20px;
    }
    
    
    
    .lasers-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .lasers-table tr td:first-child {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .lasers-title {
        font-size: 28px;
    }
    
    .lasers-subtitle {
        font-size: 24px;
    }
    
    .lasers-text {
        font-size: 15px;
        text-indent: 15px;
    }
    
    .lasers-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Кнопка возврата к разработкам */
.lasers-back {
    margin-top: 50px;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.back-to-developments {
    display: inline-block;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--theme-color, #1e3a8a);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-icon {
    font-size: 18px;
    font-weight: bold;
}

.back-text {
    font-size: 16px;
}

@media (max-width: 768px) {
    .back-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .back-icon {
        font-size: 16px;
    }
}