 
      :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 {
            background-color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            color: var(--gray-1);
            line-height: 1.6;
        }
        
        /* Стили для страницы проектов */
        .projects-page {
            max-width: 1440px;
            margin: 0 auto;
            padding: 60px 5% 100px;
            width: 100%;
        }
        
        .page-title {
            color: var(--gray-4);
            font-size: 64px;
            font-weight: 300;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .projects-container {
            display: flex;
            flex-direction: column;
            gap: 80px;
        }
        
        .project-block {
            display: flex;
            width: 100%;
            max-width: 1170px;
            height: auto;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            flex-direction: column;
        }
        
        .project-image {
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
        }
        
        .project-info {
            padding: 30px;
            width: 100%;
        }
        
        .project-name {
            color: var(--gray-4);
            font-size: 32px;
            font-weight: 300;
            margin: 0;
        }
        
        .project-description {
            margin-top: 30px;
            color: #000;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .project-view-btn {
            width: 100%;
            max-width: 222px;
            height: 60px;
            background: #fff;
            border: 1px solid var(--gray-1);
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 2.4px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            text-decoration: none;
            color: var(--gray-1);
        }
        
        .project-view-btn:hover {
            background: var(--gray-1);
            color: var(--white);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 80px;
        }
        
        .pagination-arrow {
            width: 50px;
            height: 50px;
            border: 1px solid var(--gray-1);
            background: transparent;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pagination-arrow i {
            font-size: 18px;
            transition: color 0.3s ease;
        }
        
        .pagination-arrow:hover {
            background: var(--gray-1);
        }
        
        .pagination-arrow:hover i {
            color: var(--white);
        }
        
        .page-numbers {
            display: flex;
            gap: 20px;
        }
        
        .page-number {
            font-size: 18px;
            color: var(--gray-4);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .page-number.active, .page-number:hover {
            color: var(--gray-1);
            font-weight: 500;
        }
        
        /* Анимации */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Индикатор загрузки */
        .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 (min-width: 992px) {
            .project-block {
                flex-direction: row;
                height: 435px;
            }
            
            .project-image {
                width: 60%;
                height: 100%;
            }
            
            .project-info {
                width: 40%;
                padding: 30px;
            }
            
            .project-name {
                font-size: 40px;
            }
        }
        
        @media (max-width: 991px) {
            .page-title {
                font-size: 48px;
            }
            
            .project-image {
                height: 350px;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 36px;
            }
            
            .project-image {
                height: 300px;
            }
            
            .project-name {
                font-size: 28px;
            }
            
            .pagination {
                margin-top: 50px;
                gap: 15px;
            }
            
            .page-numbers {
                gap: 10px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 32px;
            }
            
            .project-image {
                height: 250px;
            }
            
            .project-view-btn {
                height: 50px;
                max-width: 100%;
            }
        }