			.card-image-container a {
            color: black;
            text-decoration: none;
			font-size: 1.9rem;
			font-weight: bold;     /* Жирное начертание (700) */
        }
		
			.card-image-container a:hover {
            color: red;
            text-decoration: none;
			font-size: 1.9rem;
			font-weight: bold;     /* Жирное начертание (700) */
        }
        
        /* Сетка проектов */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .project-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .project-image {
            height: 300px;
            overflow: hidden;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.05);
        }
        
        .project-content {
            padding: 20px;
        }
        
        .project-content h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .project-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .project-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
		
        }
        
        .feature-gallery {
            background: #f1f8ff;
            color: #3498db;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 1.5rem;
        }
        
        .project-link {
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .project-link:hover {
            background: #2980b9;
        }
        
               
        /* Медиа-запросы для адаптивности */
        @media (max-width: 1024px) {
            .hero-banner h1 {
                font-size: 2.5rem;
            }
            
            .projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px;
            }
            
            .hero-banner {
                padding: 70px 20px;
            }
            
            .hero-banner h1 {
                font-size: 2rem;
            }
            
            .hero-banner p {
                font-size: 1rem;
            }
            
            .page-intro h2 {
                font-size: 1.8rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-banner {
                padding: 50px 15px;
            }
            
            .hero-banner h1 {
                font-size: 1.7rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
    }