        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            text-align: center;
            background-image: url('img/3.png'); /* Замените на путь к вашему фоновому изображению */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        
        /* Затемнение фона для лучшей читаемости */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }
        
        .content {
            position: relative;
            z-index: 1;
        }
        
        h1 {
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            margin-bottom: 30px;
        }
        
        .images-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .image-link {
            text-decoration: none;
            border: 2px solid transparent;
            border-radius: 8px;
            padding: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .image-link:hover {
            border-color: #007bff;
            transform: scale(1.05);
            background: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        
        .image-container {
            width: 300px;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .image-link:hover img {
            transform: scale(1.1);
        }
        
        .caption {
            margin-top: 15px;
            font-weight: bold;
            color: white;
            font-size: 16px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        p {
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {
            .images-row {
                gap: 20px;
            }
            .image-container {
                width: 250px;
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .images-row {
                flex-direction: column;
            }
            .image-container {
                width: 280px;
                height: 280px;
            }
        }