/* Наши работы */
.our-works {
    padding: 20px;
}

.our-works h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: green;
}

.works-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.work-item {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 128, 0, 0.2);
}

.video iframe, .photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-description {
    font-size: 14px;
    color: #555;
    margin: 15px;
    line-height: 1.6;
}

/* Стили для юридического уведомления */
.legal-notice {
    background-color: #f0f8ff;
    border-left: 4px solid #4CAF50;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.legal-notice .notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legal-notice .notice-header i {
    color: #4CAF50;
    font-size: 1.5em;
    margin-right: 10px;
}

.legal-notice .notice-header h3 {
    margin: 0;
    color: #333;
}

.legal-notice .notice-content p {
    margin: 8px 0;
    line-height: 1.5;
}

.legal-notice .highlight {
    color: #d32f2f;
    font-weight: bold;
}

.legal-notice .notice-link {
    color: #2196F3;
    text-decoration: underline;
    font-weight: bold;
}

.legal-notice-simple {
    background-color: #fffde7;
    border: 1px solid #ffd54f;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ РЕМОНТА НОУТБУКОВ ========== */

/* ГЕРОЙ-БЛОК */
.notebook-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 128, 0, 0.1);
}

.notebook-hero h1 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.notebook-hero .geo-highlight {
    color: #d32f2f;
    font-weight: bold;
}

.notebook-hero .subtitle {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.work-schedule {
    background-color: #fff;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.schedule-item {
    text-align: center;
    min-width: 200px;
}

.schedule-item i {
    font-size: 2.5rem;
    color: #388e3c;
    margin-bottom: 10px;
}

.schedule-item h3 {
    font-size: 1.2rem;
    color: #1a472a;
    margin-bottom: 5px;
}

.schedule-item p {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

.schedule-item .highlight {
    color: #d32f2f;
    font-weight: bold;
}

.cta-phone {
    display: inline-block;
    background-color: #388e3c;
    color: white;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(56, 142, 60, 0.4);
}

.cta-phone:hover {
    background-color: #2c6e2f;
    transform: translateY(-3px);
    box-shadow: 0 9px 20px rgba(56, 142, 60, 0.6);
}

/* ОПИСАНИЕ И ФОТО */
.notebook-about {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.notebook-about-text {
    flex: 1;
    min-width: 300px;
}

.notebook-about-text h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.notebook-about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.notebook-about-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.notebook-about-text ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.notebook-about-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #388e3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.notebook-about-photo {
    flex: 1;
    min-width: 300px;
}

.notebook-about-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.notebook-about-photo img:hover {
    transform: scale(1.02);
}
/* ОБОРУДОВАНИЕ */
.notebook-equipment {
    margin-bottom: 60px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.notebook-equipment h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.notebook-equipment .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #388e3c;
}

.equipment-card .equipment-info {
    padding: 20px;
}

.equipment-card h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.equipment-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.equipment-card .specs {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* ПРЕИМУЩЕСТВА */
.notebook-advantages {
    margin-bottom: 60px;
}

.notebook-advantages h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #388e3c;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.advantage-card i {
    font-size: 2.8rem;
    color: #388e3c;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ОТЗЫВЫ */
.notebook-reviews {
    margin-bottom: 60px;
}

.notebook-reviews h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #388e3c;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: bold;
    color: #1a472a;
    font-size: 1.1rem;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    margin: 10px 0;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}

/* ПРИМЕРЫ РАБОТ */
.notebook-works {
    margin-bottom: 60px;
}

.notebook-works h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.notebook-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.notebook-work-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.notebook-work-card:hover {
    transform: translateY(-5px);
}

.notebook-work-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.notebook-work-card .work-description {
    padding: 18px;
}

.notebook-work-card h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.notebook-work-card p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.notebook-work-card .price-tag {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1rem;
}

/* FAQ - ПРОСТОЙ СПИСОК (БЕЗ АККОРДЕОНА) */
.notebook-faq {
    margin-bottom: 60px;
    padding: 40px 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.notebook-faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.faq-item h3 i {
    color: #388e3c;
    margin-right: 12px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-left: 32px;
}

/* ПОПУЛЯРНЫЕ УСЛУГИ ДЛЯ ЗАПИСИ */
.notebook-booking {
    margin-bottom: 60px;
}

.notebook-booking h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1a472a;
    margin-bottom: 40px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.booking-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-bottom: 22px;
    transition: transform 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-8px);
}

.booking-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 18px;
}

.booking-card h3 {
    color: #1a472a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding: 0 18px;
}

.booking-card p {
    color: #555;
    padding: 0 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.booking-btn.whatsapp {
    background-color: #25D366;
    color: white;
}

.booking-btn.telegram {
    background-color: #0088cc;
    color: white;
}

.booking-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .notebook-hero h1 {
        font-size: 2rem;
    }
    
    .work-schedule {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .cta-phone {
        font-size: 1.4rem;
        padding: 14px 25px;
    }
    
    .notebook-about {
        flex-direction: column;
        padding: 20px;
    }
    
    .notebook-price-table {
        font-size: 0.9rem;
    }
    
    .notebook-price-table th,
    .notebook-price-table td {
        padding: 12px 10px;
    }
    
    .equipment-grid,
    .advantages-grid,
    .reviews-grid,
    .notebook-works-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        margin-left: 0;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-btn {
        width: 80%;
        justify-content: center;
    }
}