        /* Дополнительные стили для страницы о компании */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/wp-content/uploads/2021/12/about-header.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-bottom: 50px;
            background-color: #f0f0f0; /* Запасной цвет */
        }
        
        .page-header h1 {
            font-size: 3em;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .about-content {
            padding: 50px 0;
        }
        
        .about-section {
            margin-bottom: 60px;
        }
        
        .about-section h2 {
            text-align: left;
            margin-bottom: 30px;
        }
        
        .about-section h2:after {
            left: 0;
            transform: none;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
            font-size: 1.1em;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            min-height: 300px;
            object-fit: cover;
            background-color: #f5f5f5;
        }
        
        .about-image img:hover {
            transform: scale(1.02);
        }

        /* Стили для новых секций с оригинального сайта */
        .experience-highlight {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 5px solid #b7975c;
        }

        .experience-highlight p {
            font-size: 1.2em;
            margin-bottom: 15px;
        }

        .experience-highlight p:last-child {
            margin-bottom: 0;
        }

        .cities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .cities-list span {
            background: #b7975c;
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.95em;
            font-weight: 500;
        }

        .ideas-block {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin: 30px 0;
        }

        .ideas-block p {
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .ideas-block strong {
            color: #b7975c;
            font-size: 1.1em;
        }

        .tech-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 25px 0;
        }

        .tech-list li {
            background: #f8f9fa;
            padding: 15px 20px;
            border-radius: 10px;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.05em;
        }

        .tech-list li i {
            color: #b7975c;
            font-size: 1.2em;
            width: 25px;
        }

        .tech-description {
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-top: 25px;
        }

        .tech-description p {
            margin-bottom: 15px;
        }

        .tech-description strong {
            color: #b7975c;
        }

        .specialists-quote {
            font-size: 1.2em;
            font-style: italic;
            color: #b7975c;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 15px;
            text-align: center;
            margin: 30px 0;
            border: 2px dashed #b7975c;
        }

        .specialists-quote i {
            font-size: 2em;
            margin-bottom: 15px;
            display: block;
            color: #b7975c;
        }

        .note-box {
            background: #fff3e0;
            padding: 25px;
            border-radius: 15px;
            border: 2px solid #b7975c;
            text-align: center;
            margin: 40px 0;
        }

        .note-box p {
            font-size: 1.2em;
            color: #2c3e50;
        }

        .note-box strong {
            color: #b7975c;
            font-size: 1.3em;
        }
        
        /* Оборудование */
        .equipment-gallery {
            margin: 60px 0;
        }
        
        .equipment-gallery h2 {
            margin-bottom: 40px;
        }
        
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .equipment-item {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .equipment-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .equipment-image {
            height: 250px;
            overflow: hidden;
            background-color: #f5f5f5;
        }
        
        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            filter: grayscale(100%);
        }
        
        .equipment-item:hover .equipment-image img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }
        
        .equipment-item h3 {
            padding: 20px;
            text-align: center;
            color: #2c3e50;
        }
        
        /* Преимущества */
        .about-preim {
            background: #f8f9fa;
            padding: 60px 0;
            margin: 60px 0;
        }
        
        .preim-grid-about {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .preim-about-item {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .preim-about-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(183, 151, 92, 0.1);
        }
        
        .preim-about-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }
        
        .preim-about-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .preim-about-item:hover .preim-about-icon img {
            filter: grayscale(0%);
        }
        
        .preim-about-item h3 {
            margin-bottom: 10px;
            color: #2c3e50;
            font-size: 1.2em;
        }
        
        .preim-about-item p {
            color: #7f8c8d;
            font-size: 0.95em;
        }
        
        /* Специальные условия */
        .special-offers {
            margin: 60px 0;
        }
        
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .offer-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .offer-card:first-child {
            background: linear-gradient(135deg, #b7975c 0%, #8a6d3c 100%);
        }
        
        .offer-card:last-child {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
        }
        
        .offer-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }
        
        .offer-card h3 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.5em;
        }
        
        .offer-card p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        .offer-card .btn {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border: 2px solid #fff;
        }
        
        .offer-card .btn:hover {
            background: #fff;
            color: #333;
        }
        
        /* Команда */
        .team-section {
            margin: 60px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
            padding: 30px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .member-photo {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #b7975c;
            background-color: #f5f5f5;
        }
        
        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
        
        .team-member:hover .member-photo img {
            filter: grayscale(0%);
        }
        
        .team-member h3 {
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .member-position {
            color: #b7975c;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .member-experience {
            color: #7f8c8d;
            font-size: 0.95em;
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .about-grid,
            .preim-grid-about,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .equipment-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .offers-grid {
                grid-template-columns: 1fr;
            }

            .tech-list {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                height: 200px;
            }
            
            .page-header h1 {
                font-size: 2em;
            }
            
            .about-grid,
            .preim-grid-about,
            .equipment-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .about-section h2 {
                text-align: center;
            }
            
            .about-section h2:after {
                left: 50%;
                transform: translateX(-50%);
            }

            .cities-list span {
                padding: 5px 15px;
                font-size: 0.85em;
            }
        }
        
        /* Стиль для отсутствующих изображений */
        img[src*="none.jpg"] {
            opacity: 0.7;
            object-fit: contain !important;
            background: #f5f5f5;
        }