        /* Стили для дополнительных кнопок */
        .info-button {
            display: table-caption;
            padding: 16px 32px;
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
            margin: 8px;
            flex: 1;
        }
        
        .service-button {
            display: inline-block;
            padding: 16px 32px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
            margin: 8px;
            flex: 1;
            min-width: 250px;
        }
        
        /* Эффекты при наведении */
        .consult-button:hover,
        .info-button:hover,
        .service-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .consult-button:active,
        .info-button:active,
        .service-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        
        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .button-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        /* Заголовок секции */
        .section-title {
            text-align: center;
            color: #2c3e50;
            font-size: 28px;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
            font-weight: 700;
        }
        
        .subtitle {
            text-align: center;
            color: #7f8c8d;
            font-size: 18px;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .row {
                flex-direction: column;
                align-items: center;
            }
            
            .info-button,
            .service-button {
                width: -webkit-fill-available;
                max-width: 400px;
            }
            
            .consult-button {
                padding: 16px 30px;
                font-size: 18px;
            }
            
            .container {
                padding: 25px;
            }
        }
        
        .button-container {
            text-align: center;
            margin: 30px 0;
        }
        
        .note {
            text-align: center;
            color: #95a5a6;
            font-size: 14px;
            margin-top: 20px;
            font-style: italic;
        }