
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }
        
        .main-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            text-align: center;
            max-width: 600px;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        h1 {
            color: #2d3436;
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            background: linear-gradient(45deg, #0984e3, #74b9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .phone-container {
            margin: 30px 0;
            position: relative;
        }
        
        .phone-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00b894, #00cec9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
            animation: pulse 2s infinite;
        }
        
        .phone-icon::before {
            content: "📞";
            font-size: 2em;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 30px rgba(0, 184, 148, 0.5);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 10px 20px rgba(0, 184, 148, 0.3);
            }
        }
        
        .phone-number {
            font-size: 2.2em;
            font-weight: bold;
            color: #2d3436;
            text-decoration: none;
            display: block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
            border-radius: 15px;
            margin: 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3);
        }
        
        .phone-number:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 203, 110, 0.5);
            text-decoration: none;
            color: #2d3436;
        }
        
        .description {
            font-size: 1.2em;
            color: #636e72;
            margin: 20px 0;
            line-height: 1.8;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature {
            background: linear-gradient(135deg, #fd79a8, #e84393);
            color: white;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(232, 67, 147, 0.4);
        }
        
        .feature h3 {
            margin-bottom: 10px;
            font-size: 1.3em;
        }
        
        .website-url {
            font-size: 1.1em;
            color: #0984e3;
            margin-top: 30px;
            font-weight: bold;
            background: rgba(116, 185, 255, 0.1);
            padding: 10px 20px;
            border-radius: 10px;
            border: 2px solid rgba(116, 185, 255, 0.3);
        }
        
        .waves {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E") repeat-x;
            animation: wave 10s ease-in-out infinite;
            z-index: -1;
        }
        
        @keyframes wave {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(-50px);
            }
        }
        
        /* Адаптивность для планшетов */
        @media screen and (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .main-card {
                padding: 30px 20px;
                margin: 10px;
            }
            
            h1 {
                font-size: 2em;
            }
            
            .phone-number {
                font-size: 1.8em;
                padding: 12px 20px;
            }
            
            .phone-icon {
                width: 60px;
                height: 60px;
            }
            
            .phone-icon::before {
                font-size: 1.5em;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .description {
                font-size: 1.1em;
            }
        }
        
        /* Адаптивность для мобильных телефонов */
        @media screen and (max-width: 480px) {
            .container {
                padding: 10px;
                min-height: auto;
                padding-top: 20px;
                padding-bottom: 20px;
            }
            
            .main-card {
                padding: 20px 15px;
                border-radius: 15px;
            }
            
            h1 {
                font-size: 1.6em;
                margin-bottom: 15px;
            }
            
            .phone-number {
                font-size: 1.4em;
                padding: 10px 15px;
                margin: 15px 0;
            }
            
            .phone-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 15px;
            }
            
            .phone-icon::before {
                font-size: 1.2em;
            }
            
            .description {
                font-size: 1em;
                margin: 15px 0;
            }
            
            .feature {
                padding: 15px;
            }
            
            .feature h3 {
                font-size: 1.1em;
            }
            
            .website-url {
                font-size: 0.9em;
                padding: 8px 15px;
                margin-top: 20px;
            }
        }
        
        /* Дополнительная адаптивность для очень маленьких экранов */
        @media screen and (max-width: 320px) {
            h1 {
                font-size: 1.4em;
            }
            
            .phone-number {
                font-size: 1.2em;
            }
            
            .main-card {
                padding: 15px 10px;
            }
        }
        .photo-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    object-fit: cover;
}

.photo-image:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(116, 185, 255, 0.5);
}

/* Адаптивность для планшетов */
@media screen and (max-width: 768px) {
    .photo-image {
        border-radius: 12px;
        margin: 15px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Адаптивность для мобильных телефонов */
@media screen and (max-width: 480px) {
    .photo-image {
        border-radius: 10px;
        margin: 10px 0;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        border-width: 1px;
    }
    
    .photo-image:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }
}

/* Дополнительная адаптивность для очень маленьких экранов */
@media screen and (max-width: 320px) {
    .photo-image {
        border-radius: 8px;
        margin: 8px 0;
    }
}