      :root {
            --gray-1: #333;
            --gray-4: #BDBDBD;
            --white: #FFFFFF;
            --accent: #C30000;
            --light-gray: #f8f8f8;
        }
        
        /* Базовые стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: #fff;
            color: var(--gray-1);
            line-height: 1.6;
        }
        
        /* Стили для блога */
        .blog-section {
            width: 90%;
            max-width: 1200px;
            margin: 80px auto;
        }
        
        .blog-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .blog-title {
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 10px;
            color: var(--gray-4);
        }
        
        .blog-subtitle {
            font-size: 64px;
            font-weight: 700;
            line-height: 1;
            color: var(--gray-1);
            margin-bottom: 20px;
        }
        
        .blog-description {
            font-size: 18px;
            color: var(--gray-1);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .blog-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .blog-card-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }
        
        .blog-card-content {
            padding: 25px;
        }
        
        .blog-card-category {
            display: inline-block;
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .blog-card-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .blog-card-title a {
            color: var(--gray-1);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .blog-card-title a:hover {
            color: var(--accent);
        }
        
        .blog-card-excerpt {
            color: var(--gray-1);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .blog-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--gray-4);
        }
        
        .read-more {
            color: var(--gray-1);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s;
        }
        
        .read-more:hover {
            color: var(--accent);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }
        
        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 1px solid var(--gray-4);
            color: var(--gray-1);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .page-link:hover, .page-link.active {
            background: var(--gray-1);
            color: var(--white);
            border-color: var(--gray-1);
        }
        
        /* Секция обратной связи */
        .contact-section {
            width: 1440px;
            max-width: 100%;
            margin: 100px auto;
            padding: 0 20px;
            display: flex;
            flex-direction: row;
            gap: 80px;
            align-items: baseline;
        }
        
        .contact-info {
            flex: 1;
            max-width: 400px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-details p {
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--light-gray);
            border-radius: 50%;
            color: var(--gray-1);
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .whatsapp:hover {
            background: #25D366;
            color: white;
        }
        
        .telegram:hover {
            background: #0088cc;
            color: white;
        }
        
        .instagram:hover {
            background: #e1306c;
            color: white;
        }
        
        .contact-subtitle {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--gray-1);
        }
        
        .contact-form-wrapper {
            flex: 1;
            max-width: 350px;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .form-group label {
            color: #8D8D8D;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 8px;
            letter-spacing: 0.56px;
        }
        
        .form-group label span {
            color: var(--accent);
        }
        
        .form-group input,
        .form-group textarea {
            border: none;
            border-bottom: 1px solid #BDBDBD;
            padding: 12px 0;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
            background: transparent;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-bottom-color: var(--gray-1);
        }
        
        .checkbox-group {
            flex-direction: row;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin: 0;
        }
        
        .checkbox-group label {
            margin-bottom: 0;
            font-size: 14px;
        }
        
        .submit-btn {
            background: var(--gray-1);
            color: white;
            border: none;
            padding: 20px 0;
            font-size: 12px;
            letter-spacing: 2.4px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 20px;
            width: 222px;
            height: 71px;
        }
        
        .submit-btn:hover {
            background: #555;
        }
        
        /* reCAPTCHA стили */
        .g-recaptcha {
            margin: 20px 0;
            transform: scale(0.95);
            transform-origin: left;
        }
        
        /* Индикатор загрузки */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #f0f0f0;
            z-index: 1000;
        }
        
        .loader-bar {
            height: 100%;
            width: 0%;
            background: #c30000;
            transition: width 0.4s ease;
        }
        
        /* Адаптивность */
        @media (max-width: 1200px) {
            .blog-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .contact-section {
                flex-direction: column;
                gap: 40px;
            }
            
            .contact-info,
            .contact-form-wrapper {
                max-width: 100%;
            }
        }
        
        @media (max-width: 900px) {
            .blog-title {
                font-size: 48px;
            }
            
            .blog-subtitle {
                font-size: 48px;
            }
        }
        
        @media (max-width: 600px) {
            .blog-title {
                font-size: 36px;
            }
            
            .blog-subtitle {
                font-size: 36px;
                line-height: 1;
            }
            
            .blog-description {
                font-size: 16px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .submit-btn {
                width: 180px;
                height: 60px;
            }
        }