        /* Дополнительные стили для страницы контактов */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/wp-content/themes/leonardo/img/bg-contact.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: #2c3e50;
        }
        
        .page-header h1 {
            font-size: 3em;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        /* Контактная информация */
        .contacts-info-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .contacts-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(183, 151, 92, 0.1);
        }
        
        .contact-card h2 {
            text-align: left;
            margin-bottom: 25px;
            font-size: 1.8em;
        }
        
        .contact-card h2:after {
            left: 0;
            transform: none;
            width: 60px;
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: #b7975c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.3em;
            flex-shrink: 0;
        }
        
        .contact-text {
            flex-grow: 1;
        }
        
        .contact-text h3 {
            margin-bottom: 8px;
            color: #2c3e50;
            font-size: 1.2em;
        }
        
        .contact-text p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
        .contact-text a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
            margin-bottom: 5px;
        }
        
        .contact-text a:hover {
            color: #b7975c;
        }
        
        .social-links-contacts {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links-contacts a {
            width: 45px;
            height: 45px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2c3e50;
            font-size: 1.3em;
            transition: all 0.3s ease;
        }
        
        .social-links-contacts a:hover {
            background: #b7975c;
            color: #fff;
            transform: translateY(-3px);
        }
        
        /* Часы работы */
        .schedule-list {
            list-style: none;
            padding: 0;
        }
        
        .schedule-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .schedule-list li:last-child {
            border-bottom: none;
        }
        
        .schedule-list .day {
            font-weight: 500;
            color: #2c3e50;
        }
        
        .schedule-list .time {
            color: #b7975c;
            font-weight: 500;
        }
        
        .note {
            margin-top: 20px;
            color: #7f8c8d;
            font-size: 0.95em;
            font-style: italic;
        }
        
        /* Карта */
        .map-section {
            padding: 60px 0;
        }
        
        .map-section h2 {
            margin-bottom: 40px;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }
        
        /* Форма обратной связи */
        .feedback-section {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .feedback-text h2 {
            text-align: left;
            margin-bottom: 25px;
        }
        
        .feedback-text h2:after {
            left: 0;
            transform: none;
        }
        
        .feedback-text p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1em;
        }
        
        .feedback-form {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: inherit;
            background: #f9f9f9;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #b7975c;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(183, 151, 92, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .checkbox-group {
            margin: 15px 0;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 0.9em;
            color: #666;
        }
        
        .checkbox-label input[type="checkbox"] {
            width: auto;
            margin-top: 3px;
        }
        
        .checkbox-text a {
            color: #b7975c;
            text-decoration: none;
        }
        
        .checkbox-text a:hover {
            text-decoration: underline;
        }
        
        .btn-block {
            width: 100%;
            padding: 15px;
            font-size: 16px;
        }
        
        /* Реквизиты */
        .requisites-section {
            padding: 60px 0;
        }
        
        .requisites-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .requisite-item {
            background: #fff;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .requisite-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(183, 151, 92, 0.1);
        }
        
        .requisite-icon {
            width: 70px;
            height: 70px;
            background: #b7975c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.8em;
            margin: 0 auto 20px;
        }
        
        .requisite-item h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .requisite-item p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 5px;
        }
        
        /* Кнопка вызова */
        .call-section {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(135deg, #b7975c 0%, #8a6d3c 100%);
            color: #fff;
            border-radius: 20px;
            margin: 60px 0;
        }
        
        .call-section h2 {
            color: #fff;
            margin-bottom: 20px;
        }
        
        .call-section h2:after {
            background: #fff;
        }
        
        .call-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2em;
            margin-bottom: 30px;
        }
        
        .call-section .btn {
            background: #fff;
            color: #b7975c;
            border: none;
            padding: 15px 50px;
            font-size: 1.2em;
        }
        
        .call-section .btn:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
        }
        
        /* Адаптивность */
        @media (max-width: 992px) {
            .contacts-grid,
            .feedback-grid,
            .requisites-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                height: 200px;
            }
            
            .page-header h1 {
                font-size: 2em;
            }
            
            .contact-card h2 {
                text-align: center;
            }
            
            .contact-card h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .feedback-text h2 {
                text-align: center;
            }
            
            .feedback-text h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .schedule-list li {
                flex-direction: column;
                align-items: center;
                gap: 5px;
            }
            
            .social-links-contacts {
                justify-content: center;
            }
            
            .map-container iframe {
                height: 300px;
            }
        }
        
        /* Стиль для отсутствующих изображений */
        img[src*="none.jpg"] {
            opacity: 0.7;
            object-fit: contain !important;
            background: #f5f5f5;
        }